jonnybarnes.uk/resources/sass-orig/_footer.scss
2019-07-13 18:05:50 +01:00

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;
}
}
}