26 lines
451 B
CSS
26 lines
451 B
CSS
.secondaryNavigation {
|
|
display: flex;
|
|
gap: 80px;
|
|
}
|
|
|
|
.secondaryNavigationList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
list-style: none;
|
|
gap: var(--Spacing-x3);
|
|
}
|
|
|
|
.secondaryNavigationGroup {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x3);
|
|
}
|
|
|
|
.secondaryNavigationGroupTitle {
|
|
font-size: 14px;
|
|
color: var(--Scandic-Peach-80);
|
|
font-weight: 500;
|
|
font-family: var(--typography-Body-Bold-fontFamily);
|
|
margin: 0;
|
|
}
|