Files
web/components/Footer/Navigation/navigation.module.css

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: 767px) {
.section {
padding: var(--Spacing-x9) 0;
}
}
@media screen and (min-width: 1367px) {
.section {
padding: var(--Spacing-x9) 0;
}
.maxWidth {
flex-direction: row;
}
}