mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-06 00:25:55 +00:00
15 lines
263 B
SCSS
15 lines
263 B
SCSS
.container {
|
|
height: calc(100vh - 64px);
|
|
}
|
|
|
|
.layout {
|
|
display: grid;
|
|
height: 100%;
|
|
grid-template-areas: 'left-nav main-content';
|
|
grid-template-columns: 250px calc(100vw - 250px);
|
|
grid-template-rows: 1fr;
|
|
}
|
|
|
|
.mainContent {
|
|
grid-area: main-content;
|
|
}
|