38 lines
552 B
SCSS
Vendored
38 lines
552 B
SCSS
Vendored
// footer.scss
|
|
|
|
footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background-color: var(--white);
|
|
color: var(--black);
|
|
|
|
a {
|
|
color: var(--blue);
|
|
text-decoration: none;
|
|
}
|
|
|
|
form:first-child {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: $mainWidth) {
|
|
footer {
|
|
img {
|
|
width: 95%;
|
|
}
|
|
|
|
form {
|
|
width: 95vw;
|
|
}
|
|
|
|
select {
|
|
width: 90vw;
|
|
}
|
|
}
|
|
}
|