32 lines
478 B
CSS
32 lines
478 B
CSS
.mainNavigation {
|
|
width: 100%;
|
|
}
|
|
|
|
.mainNavigationList {
|
|
list-style: none;
|
|
}
|
|
|
|
.mainNavigationItem {
|
|
padding: var(--Spacing-x3) 0;
|
|
border-bottom: 1px solid var(--Scandic-Peach-20);
|
|
&:first-child {
|
|
padding-top: 0;
|
|
}
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.mainNavigationLink {
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.mainNavigation {
|
|
max-width: 360px;
|
|
}
|
|
}
|