18 lines
425 B
CSS
18 lines
425 B
CSS
|
.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;
|
||
|
}
|
||
|
}
|