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
23 lines
460 B
CSS
23 lines
460 B
CSS
.chip {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Spacing-x1);
|
|
padding: var(--Spacing-x1) var(--Space-x15);
|
|
border-radius: var(--Corner-radius-sm);
|
|
}
|
|
|
|
.blue {
|
|
background-color: var(--Scandic-Blue-00);
|
|
color: var(--UI-Semantic-Information);
|
|
}
|
|
|
|
.green {
|
|
background-color: var(--Surface-Feedback-Succes-light);
|
|
color: var(--Surface-Feedback-Succes);
|
|
}
|
|
|
|
.red {
|
|
background-color: var(--Scandic-Red-00);
|
|
color: var(--UI-Semantic-Error);
|
|
}
|