feat(LOY-424): Load More Past Stays via Sidepeek * feat(LOY-424): Load More Past Stays via Sidepeek * chore(LOY-424): use new section header * fix(LOY-424): remove uneeded nextCursor check Approved-by: Emma Zettervall
35 lines
565 B
CSS
35 lines
565 B
CSS
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x3);
|
|
}
|
|
|
|
.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);
|
|
}
|