mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
42 lines
738 B
SCSS
42 lines
738 B
SCSS
|
@import '../constants/colors';
|
||
|
@import '../constants/dimensions';
|
||
|
|
||
|
.pane {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
display: grid;
|
||
|
grid-template-rows: $line-height-md 1fr;
|
||
|
grid-template-columns: 1fr;
|
||
|
|
||
|
.pane__header {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
background: $bg-super-light;
|
||
|
color: $font-super-light-bg;
|
||
|
border-left: 1px solid $hl-md;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.pane__body {
|
||
|
border-left: 1px solid $hl-md;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.pane__body--placeholder {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
|
||
|
h1 {
|
||
|
color: $hl;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
color: $hl-xxl;
|
||
|
}
|
||
|
}
|
||
|
}
|