website/assets/sass/_footer.scss
2024-09-05 12:49:28 -05:00

39 lines
No EOL
634 B
SCSS

.footer {
.container {
align-items: center;
display: flex;
gap: 24px;
justify-content: space-between;
@media (max-width: 768px) {
flex-direction: column;
}
}
.menu {
margin-bottom: 1em;
ul {
gap: 12px;
}
@media (max-width: 768px) {
ul {
align-items: center;
flex-direction: column;
}
}
a:hover {
text-decoration: underline;
}
}
.circle img {
width: 200px;
}
.copy {
opacity: 0.6;
}
}