mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
24 lines
454 B
SCSS
24 lines
454 B
SCSS
@import '../constants/colors';
|
|
@import '../constants/dimensions';
|
|
|
|
.pane {
|
|
.pane__header {
|
|
z-index: 1;
|
|
position: relative;
|
|
border-right: 2px solid rgba(0, 0, 0, 0.04);
|
|
height: $header-height;
|
|
|
|
.pane__header__content {
|
|
display: block;
|
|
height: $header-height;
|
|
box-sizing: border-box;
|
|
padding: $default-padding;
|
|
}
|
|
}
|
|
|
|
.pane__body {
|
|
height: 100%;
|
|
border-right: 2px solid rgba(0, 0, 0, 0.1);
|
|
}
|
|
}
|