* feat(SW-2043): Added new room packages filter * fix(SW-2043): Fixed issue with not updating price when selecting pet room Approved-by: Tobias Johansson Approved-by: Matilda Landström
32 lines
679 B
CSS
32 lines
679 B
CSS
.chip {
|
|
background-color: var(--Component-Button-Inverted-Fill-Default);
|
|
border-radius: var(--Corner-radius-sm);
|
|
padding: var(--Space-x1) var(--Space-x15);
|
|
color: var(--Text-Interactive-Default);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.Default {
|
|
border: 1px solid var(--Component-Button-Inverted-Border-Default);
|
|
}
|
|
|
|
.Default:hover {
|
|
background-color: var(--Surface-Primary-Hover-Accent);
|
|
}
|
|
|
|
.Outlined {
|
|
border: 1px solid var(--Border-Intense);
|
|
}
|
|
|
|
.Outlined:hover {
|
|
background-color: var(--Surface-Primary-Hover);
|
|
}
|
|
|
|
.Outlined:focus,
|
|
.Outlined:active {
|
|
border-color: var(--Border-Interactive-Selected);
|
|
}
|