This repository has been archived on 2025-03-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
little-lemon/src/styles/Footer.css
2023-08-17 19:53:36 -04:00

33 lines
405 B
CSS

footer {
display: flex;
justify-content: center;
gap: 3rem;
padding: 1.6rem;
background-color: var(--primary-1);
color: white;
}
footer section {
display: flex;
flex-direction: column;
gap: 0.3rem;
}
footer h3 {
font-size: 1rem;
margin: 0;
margin-bottom: 0.2rem;
}
footer img {
height: 10rem;
}
@media (max-width: 500px) {
footer img {
display: none;
}
footer {
gap: 1.45rem;
}
}