mirror of
https://github.com/dialect-app/website.git
synced 2025-06-18 20:36:25 +00:00
35 lines
No EOL
593 B
SCSS
35 lines
No EOL
593 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;
|
|
}
|
|
} |