mirror of
https://github.com/vercel/commerce.git
synced 2025-07-07 13:21:22 +00:00
30 lines
763 B
SCSS
30 lines
763 B
SCSS
@import "../../../styles/utilities";
|
|
.menuNavigationWrapper{
|
|
.menuNavigationHeading{
|
|
@screen md {
|
|
@apply sub-headline font-bold ;
|
|
color: var(--text-active);
|
|
font-feature-settings: 'salt' on;
|
|
margin: 1.6rem 0;
|
|
}
|
|
}
|
|
.menuNavigationList{
|
|
@screen md {
|
|
li{
|
|
margin: 0.8rem 0;
|
|
a{
|
|
font-size: var(--font-size);
|
|
line-height: var(--line-height);
|
|
color:var(--text-base);
|
|
&:hover {
|
|
@apply text-primary;
|
|
}
|
|
&.active {
|
|
@apply text-primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|