mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 09:19:56 -05:00
15 lines
260 B
CSS
15 lines
260 B
CSS
.root {
|
|
display: flex;
|
|
height: 100%;
|
|
background: var(--bg-base);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.main {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
background: var(--bg-surface);
|
|
/* GPU layer for main content area */
|
|
transform: translateZ(0);
|
|
contain: layout style;
|
|
} |