a6cbcc273e
Made-with: Cursor
28 lines
467 B
CSS
28 lines
467 B
CSS
.root {
|
|
height: 100vh;
|
|
display: grid;
|
|
grid-template-rows: var(--topbar-h) 1fr;
|
|
}
|
|
|
|
.topBar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 16px;
|
|
border-bottom: 1px solid var(--stroke);
|
|
background: #18181b;
|
|
backdrop-filter: var(--backdrop-blur-shell);
|
|
}
|
|
|
|
.body {
|
|
display: grid;
|
|
grid-template-columns: var(--sidebar-w) 1fr var(--inspector-w);
|
|
gap: 0;
|
|
padding: 0;
|
|
min-height: 0;
|
|
}
|
|
|
|
.col {
|
|
min-height: 0;
|
|
}
|