Files
web/components/HotelReservation/BookingConfirmation/ConfirmationCard/confirmationCard.module.css
2024-08-21 15:32:53 +02:00

58 lines
960 B
CSS

.section {
display: flex;
width: 100%;
background-color: var(--Base-Surface-Primary-light-Normal);
border-radius: var(--Corner-radius-Small);
overflow: hidden;
}
.image {
height: 100%;
width: 100%;
max-width: 105px;
object-fit: cover;
}
.info {
display: flex;
flex-direction: column;
gap: var(--Spacing-x1);
padding: var(--Spacing-x2);
font-family: var(--typography-Caption-Regular-fontFamily);
font-size: var(--typography-Caption-Regular-fontSize);
}
.hotel,
.stay {
display: flex;
flex-direction: column;
gap: var(--Spacing-x-half);
}
.dates {
display: flex;
align-items: center;
}
@media screen and (min-width: 1367px) {
.section {
flex-direction: column;
}
.image {
max-width: 100%;
height: 100%;
max-height: 195px;
}
.info {
flex-direction: row;
justify-content: space-between;
gap: var(--Spacing-x4);
}
.hotel,
.stay {
width: 100%;
max-width: 230px;
}
}