* 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
28 lines
498 B
CSS
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;
|
|
}
|