Files
web/apps/scandic-web/components/Header/MainMenu/MenuLink/menuLink.module.css
2026-01-26 06:45:23 +00:00

23 lines
393 B
CSS

.menuLink {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: var(--Space-x1);
gap: var(--Space-x15);
border-radius: var(--Corner-Radius-md);
color: var(--Text-Interactive-Default);
&:hover {
background-color: var(--Surface-Primary-Hover);
}
&:not(:hover) .arrowIcon {
opacity: 0;
}
}
.arrowIcon {
flex-shrink: 0;
}