36 lines
587 B
CSS
36 lines
587 B
CSS
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x3);
|
|
position: relative;
|
|
}
|
|
|
|
.loadingContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: var(--Space-x4);
|
|
}
|
|
|
|
.yearSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
.yearHeader {
|
|
background: var(--Surface-Primary-Hover-Accent);
|
|
padding: var(--Space-x1) var(--Space-x2);
|
|
border-radius: var(--Corner-Radius-sm);
|
|
}
|
|
|
|
.yearText {
|
|
color: var(--Text-Heading);
|
|
}
|
|
|
|
.staysList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x2);
|
|
}
|