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
29 lines
419 B
CSS
29 lines
419 B
CSS
.ancillaryCard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.imageContainer {
|
|
position: relative;
|
|
width: 100%;
|
|
aspect-ratio: 16/9;
|
|
border-radius: var(--Corner-radius-md);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.image {
|
|
object-fit: cover;
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
.contentContainer {
|
|
padding: var(--Space-x15) 0 0 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x1);
|
|
}
|