TootBottomSheet: test scrollable

This commit is contained in:
thislight 2024-11-10 21:39:10 +08:00
parent 34dd95e959
commit 8066f699bd
No known key found for this signature in database
GPG key ID: FCFE5192241CCD4E
2 changed files with 74 additions and 57 deletions

View file

@ -0,0 +1,18 @@
.TootBottomSheet {
overflow: hidden;
.Scrollable {
padding-bottom: var(--safe-area-inset-bottom, 0);
overflow-y: auto;
overscroll-behavior-y: contain;
max-height: calc(100vh - var(--scaffold-topbar-height, 0px));
max-height: calc(100dvh - var(--scaffold-topbar-height, 0px));
}
.progress-line {
display: flex;
justify-content: center;
margin-top: 12px;
margin-bottom: 12px;
}
}