Files
web/apps/scandic-web/components/Header/MainMenu/MenuLink/menuLink.module.css
Erik Tiekstra 4ec1e85d84 Feat/BOOK-293 button adjustments
* feat(BOOK-293): Adjusted padding of the buttons to match Figma design
* feat(BOOK-293): Updated variants for IconButton
* feat(BOOK-113): Updated focus indicators on buttons and added default focus ring color
* feat(BOOK-293): Replaced buttons inside booking widget

Approved-by: Christel Westerberg
2025-12-15 07:05:31 +00:00

28 lines
498 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);
}
&:focus-visible {
outline: 2px auto var(--Border-Interactive-Focus);
outline-offset: 1px;
}
&:not(:hover) .arrowIcon {
opacity: 0;
}
}
.arrowIcon {
flex-shrink: 0;
}