tutu/src/timelines/TootBottomSheet.css

17 lines
353 B
CSS
Raw Normal View History

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