mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
41 lines
712 B
SCSS
41 lines
712 B
SCSS
.Workspaces {
|
|
display: grid;
|
|
grid-template-areas: "draggable draggable" "menu lens-view" "bottom-bar bottom-bar";
|
|
grid-template-rows: 20px 1fr min-content;
|
|
grid-template-columns: min-content 1fr;
|
|
height: 100%;
|
|
|
|
> .draggable-top {
|
|
@include set-draggable;
|
|
grid-area: draggable;
|
|
}
|
|
|
|
> .ClusterMenu {
|
|
grid-area: menu;
|
|
}
|
|
|
|
> .lens-container {
|
|
grid-area: lens-view;
|
|
}
|
|
|
|
> .bottom-bar {
|
|
grid-area: bottom-bar;
|
|
font-size: $font-size-small;
|
|
background-color: #3d90ce;
|
|
padding: $padding / 2 $padding;
|
|
color: white;
|
|
|
|
#workspace {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
.WorkspacesMenu {
|
|
border-radius: $radius;
|
|
|
|
.workspaces-title {
|
|
padding: $padding;
|
|
}
|
|
}
|