Feat/SW-1546 list ancillaries my stay * feat(SW-1546): foundation for listing ancillaries * feat(SW-1546): foundation for listing ancillaries * feat(SW-1546): refactor type * feat(SW-1546): fix date format * feat(SW-1546): refactor usestate * feat(SW-1546): refactor typing * feat(SW-1546): refactor types * feat(SW-1546): responsive width on modal * feat(SW-1546): update design * feat(SW-1546): rebase master * feat(SW-1546): show points only if logged in * feat(SW-1546): always show points * feat(SW-1546): small fix * feat(SW-1546): remove spread object * feat(SW-1546): fix import order Approved-by: Simon.Emanuelsson
31 lines
471 B
CSS
31 lines
471 B
CSS
.ancillaryCard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 251px;
|
|
max-width: 286px;
|
|
}
|
|
|
|
.imageContainer {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 140px;
|
|
border-radius: var(--Corner-radius-Medium);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.image {
|
|
object-fit: cover;
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
.contentContainer {
|
|
padding: var(--Spacing-x-one-and-half) 0 0 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x1);
|
|
}
|