42 lines
732 B
CSS
42 lines
732 B
CSS
.test {
|
|
display: flex;
|
|
width: 100%;
|
|
max-width: 365px;
|
|
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: 1;
|
|
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 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-half);
|
|
}
|
|
|
|
.stay {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-half);
|
|
}
|
|
.dates {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|