1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/cluster-manager/cluster-manager.scss
Roman 27e8dd2f5b cluster-view bugfixing, attempt 100500..
Signed-off-by: Roman <ixrock@gmail.com>
2020-08-07 16:18:56 +03:00

21 lines
379 B
SCSS

.ClusterManager {
display: grid;
grid-template-areas: "menu main" "menu main" "bottom-bar bottom-bar";
grid-template-rows: auto 1fr min-content;
grid-template-columns: min-content 1fr;
height: 100%;
main {
position: relative;
grid-area: main;
display: flex;
}
.ClustersMenu {
grid-area: menu;
}
.BottomBar {
grid-area: bottom-bar;
}
}