tutu/src/timelines/TootBottomSheet.css

18 lines
369 B
CSS
Raw Normal View History

2024-11-10 21:39:10 +08:00
.TootBottomSheet {
overflow: hidden;
height: calc(100% - var(--scaffold-topbar-height, 0px));
2024-11-10 21:39:10 +08:00
.Scrollable {
padding-bottom: var(--safe-area-inset-bottom, 0);
overflow-y: auto;
overscroll-behavior-y: contain;
height: 100%;
2024-11-10 21:39:10 +08:00
}
.progress-line {
display: flex;
justify-content: center;
margin-top: 12px;
margin-bottom: 12px;
}
}