19 lines
443 B
CSS
19 lines
443 B
CSS
.section {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: var(--Spacing-x2);
|
|
border-radius: var(--Corner-radius-Small);
|
|
background-color: var(--Base-Surface-Primary-dark-Normal);
|
|
width: 100%;
|
|
}
|
|
|
|
.breakfast,
|
|
.checkIn,
|
|
.checkOut {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-half);
|
|
font-family: var(--typography-Caption-Regular-fontFamily);
|
|
font-size: var(--typography-Caption-Regular-fontSize);
|
|
}
|