fix footer email + style footer mobile

This commit is contained in:
isUnknown 2024-09-20 09:11:18 +02:00
parent b45806fa8c
commit 7cf792ed15
5 changed files with 70 additions and 8 deletions

View file

@ -23,14 +23,23 @@
margin-bottom: 2rem;
}
.main-footer form {
position: relative;
}
.main-footer form p {
font-weight: bold;
}
.main-footer form input {
width: 100%;
border-bottom: var(--border);
padding-bottom: 0.5rem;
padding-bottom: 0.3rem;
}
.main-footer form input::after {
content: "→";
.main-footer form button {
position: absolute;
right: 0;
top: 0;
}
@media screen and (max-width: 800px) {
@ -38,4 +47,15 @@
grid-template-columns: 1fr;
row-gap: 1rem;
}
.main-footer .logo {
margin-bottom: 3rem;
}
.main-footer form {
width: 12rem;
}
.main-footer .social-icons {
margin-bottom: 1rem;
}
}