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 312fdfa4d3 Merge remote-tracking branch 'origin/vue_react_migration' into views_management_refactoring
# Conflicts:
#	src/renderer/components/cluster-manager/cluster-manager.scss
2020-08-10 20:31:46 +03:00

35 lines
534 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;
}
#lens-views {
grid-area: main;
display: flex;
overflow: hidden;
&.active {
z-index: 1;
}
> * {
flex: 1;
}
}
.ClustersMenu {
grid-area: menu;
}
.BottomBar {
grid-area: bottom-bar;
}
}