feat(BOOK-522): align items in topmenu, header and booking widget * feat(BOOK-522): align items in topmenu, header and booking widget * Delete old css variable and use new * Fixed underline on icons Approved-by: Erik Tiekstra
41 lines
823 B
CSS
41 lines
823 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: var(--Text-Default);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.container[data-selected] .checkbox {
|
|
border: none;
|
|
background: var(--Surface-UI-Fill-Active);
|
|
}
|
|
|
|
.container[data-disabled] .checkbox {
|
|
border: 1px solid var(--UI-Input-Controls-Border-Disabled);
|
|
background: var(--UI-Input-Controls-Surface-Disabled);
|
|
}
|
|
|
|
.checkboxContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Space-x15);
|
|
}
|
|
|
|
.checkbox {
|
|
width: 24px;
|
|
height: 24px;
|
|
min-width: 24px;
|
|
background: var(--UI-Input-Controls-Surface-Normal);
|
|
border: 1px solid var(--UI-Input-Controls-Border-Normal);
|
|
border-radius: 4px;
|
|
transition: all 200ms;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
forced-color-adjust: none;
|
|
}
|
|
|
|
.topAlign {
|
|
align-items: flex-start;
|
|
}
|