Files
web/apps/scandic-web/components/Footer/Navigation/navigation.module.css
2025-04-09 16:30:12 +02:00

28 lines
470 B
CSS

.section {
background: var(--Base-Surface-Subtle-Normal);
padding: var(--Spacing-x7) 0;
}
.maxWidth {
margin: 0 auto;
display: flex;
justify-content: space-between;
flex-direction: column;
max-width: var(--max-width-page);
}
@media screen and (min-width: 768px) {
.section {
padding: var(--Spacing-x9) 0;
}
}
@media screen and (min-width: 1367px) {
.section {
padding: var(--Spacing-x9) 0;
}
.maxWidth {
flex-direction: row;
}
}