mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
22 lines
425 B
SCSS
22 lines
425 B
SCSS
@import '../constants/colors';
|
|
@import '../constants/dimensions';
|
|
|
|
.pane {
|
|
.pane__body, .pane__header {
|
|
border-right: 1px solid $hl-sm;
|
|
border-left: 2px solid rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.pane__header {
|
|
border-color: transparent;
|
|
height: $line-height-md;
|
|
|
|
.pane__header__content {
|
|
display: block;
|
|
height: $line-height-md;
|
|
box-sizing: border-box;
|
|
padding: $padding-md;
|
|
}
|
|
}
|
|
}
|