Files
web/components/Footer/Navigation/MainNav/mainnav.module.css
2024-08-26 11:06:03 +02:00

30 lines
455 B
CSS

.mainNavigation {
width: 100%;
}
.mainNavigationList {
list-style: none;
}
.mainNavigationItem {
padding: var(--Spacing-x3) 0;
border-bottom: 1px solid var(--Primary-Light-On-Surface-Divider);
&:first-child {
padding-top: 0;
}
&:last-child {
border-bottom: 0;
}
}
.mainNavigationLink {
display: flex;
justify-content: space-between;
}
@media screen and (min-width: 1367px) {
.mainNavigation {
max-width: 360px;
}
}