mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
38 lines
617 B
SCSS
38 lines
617 B
SCSS
.ClusterManager {
|
|
--bottom-bar-height: 22px;
|
|
|
|
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 {
|
|
grid-area: main;
|
|
position: relative;
|
|
display: flex;
|
|
}
|
|
|
|
.ClustersMenu {
|
|
grid-area: menu;
|
|
}
|
|
|
|
.BottomBar {
|
|
grid-area: bottom-bar;
|
|
}
|
|
|
|
#lens-views {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
background-color: $mainBackground;
|
|
z-index: 1;
|
|
|
|
iframe {
|
|
flex: 1;
|
|
}
|
|
}
|
|
} |