Files
web/apps/scandic-web/components/Footer/Navigation/SecondaryNav/secondarynav.module.css

35 lines
609 B
CSS

.secondaryNavigation {
display: flex;
flex-direction: column-reverse;
gap: var(--Space-x6);
}
.secondaryNavigationList {
display: flex;
flex-direction: column;
list-style: none;
gap: var(--Space-x2);
}
.secondaryNavigationGroup {
display: flex;
flex-direction: column;
gap: var(--Space-x3);
color: var(--Primary-Dim-On-Surface-Accent);
}
@media screen and (min-width: 768px) {
.secondaryNavigation {
gap: 120px;
flex-direction: row;
}
}
@media screen and (min-width: 1367px) {
.secondaryNavigation {
gap: 80px;
grid-column: 2;
justify-self: flex-end;
}
}