scroll position save fix attempt no. 1 feat. 'What happens next…?' text at bottom of scroll; buffer added to scroll, accounter for in FTs

This commit is contained in:
Disco DeDisco
2026-03-24 19:02:29 -04:00
parent bc78d2c470
commit 8bab26e003
4 changed files with 71 additions and 8 deletions

View File

@@ -57,6 +57,31 @@ body.page-billscroll {
flex: 1;
min-height: 0;
overflow-y: auto;
.scroll-buffer {
display: flex;
justify-content: center;
align-items: baseline;
padding: 2rem 0 1rem;
opacity: 0.4;
font-size: 0.8rem;
text-transform: uppercase;
.scroll-buffer-text {
letter-spacing: 0.33em;
}
.scroll-buffer-dots {
display: inline-flex;
letter-spacing: 0;
span {
display: inline-block;
width: 0.7em;
text-align: center;
}
}
}
}
}
}