mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
16 lines
298 B
SCSS
16 lines
298 B
SCSS
.menuNavigationItem {
|
|
@screen md {
|
|
display: block;
|
|
width: 100%;
|
|
margin: 0.8rem 0;
|
|
color: var(--text-base);
|
|
cursor: pointer;
|
|
&:hover {
|
|
@apply text-active;
|
|
}
|
|
&.active {
|
|
@apply text-primary;
|
|
}
|
|
}
|
|
}
|