* feat(BOOK-63): Replaced css variables and components to apply hotel branding on subpages * feat(BOOK-63): Replaced css variables and components to apply hotel branding on hotel page map view Approved-by: Christel Westerberg Approved-by: Matilda Landström
27 lines
422 B
CSS
27 lines
422 B
CSS
.parkingInformation {
|
|
display: grid;
|
|
gap: var(--Space-x3);
|
|
}
|
|
|
|
.list,
|
|
.prices {
|
|
display: grid;
|
|
gap: var(--Space-x15);
|
|
}
|
|
|
|
.priceWrapper {
|
|
background-color: var(--Surface-Secondary-Default);
|
|
border-radius: var(--Corner-radius-md);
|
|
padding: var(--Space-x2) var(--Space-x3);
|
|
display: grid;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.heading {
|
|
color: var(--Text-Default);
|
|
}
|
|
|
|
.priceHeading {
|
|
color: var(--Text-Secondary);
|
|
}
|