22 lines
382 B
CSS
22 lines
382 B
CSS
|
|
||
|
.Scaffold__topbar {
|
||
|
position: sticky;
|
||
|
top: 0px;
|
||
|
z-index: var(--tutu-zidx-nav, auto);
|
||
|
}
|
||
|
|
||
|
.Scaffold__fab-dock {
|
||
|
position: fixed;
|
||
|
bottom: 40px;
|
||
|
right: 40px;
|
||
|
z-index: var(--tutu-zidx-nav, auto);
|
||
|
}
|
||
|
|
||
|
.Scaffold__bottom-dock {
|
||
|
position: sticky;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
z-index: var(--tutu-zidx-nav, auto);
|
||
|
padding-bottom: var(--safe-area-inset-bottom, 0);
|
||
|
}
|