Feat/LOY-495 Scroll to Top Functionality in Previous Stays Sidepeek * feat(LOY-495): enable scroll to top functionality for past stays sidepeek Approved-by: Emma Zettervall Approved-by: Matilda Landström
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);
|
|
}
|