* 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
22 lines
413 B
CSS
22 lines
413 B
CSS
.menuButton {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--Space-x05);
|
|
cursor: pointer;
|
|
width: 100%;
|
|
background-color: transparent;
|
|
color: var(--Text-Interactive-Default);
|
|
border-width: 0;
|
|
padding: var(--Space-x05) 0;
|
|
|
|
&:focus-visible {
|
|
outline: 2px auto var(--Border-Interactive-Focus);
|
|
outline-offset: 1px;
|
|
}
|
|
|
|
&.loading {
|
|
cursor: progress;
|
|
}
|
|
}
|