tutu/src/material/Scaffold.css

41 lines
656 B
CSS
Raw Normal View History

2024-11-16 12:04:55 +00:00
.Scaffold>.topbar {
2024-11-03 12:50:31 +00:00
position: sticky;
top: 0px;
z-index: var(--tutu-zidx-nav, auto);
2024-11-16 12:04:55 +00:00
.MuiToolbar-root {
>.MuiButtonBase-root {
&:first-child {
margin-left: -0.5em;
margin-right: 24px;
}
&:last-child {
margin-right: -0.5em;
margin-left: 24px;
}
}
}
2024-11-03 12:50:31 +00:00
}
2024-11-16 12:04:55 +00:00
.Scaffold>.fab-dock {
2024-11-03 12:50:31 +00:00
position: fixed;
bottom: 40px;
right: 40px;
z-index: var(--tutu-zidx-nav, auto);
}
2024-11-16 12:04:55 +00:00
.Scaffold>.bottom-dock {
2024-11-03 12:50:31 +00:00
position: sticky;
bottom: 0;
left: 0;
right: 0;
z-index: var(--tutu-zidx-nav, auto);
2024-11-16 12:04:55 +00:00
}
.Scaffold {
height: 100%;
width: 100%;
background-color: var(--tutu-color-surface);
2024-11-03 12:50:31 +00:00
}