mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
27 lines
394 B
SCSS
27 lines
394 B
SCSS
@import '../constants/dimensions';
|
|
@import '../constants/colors';
|
|
|
|
.key-value-editor {
|
|
li {
|
|
display: grid;
|
|
grid-template-columns: 0.5fr 0.5fr auto;
|
|
grid-template-rows: auto;
|
|
|
|
& > * {
|
|
padding-right: $padding-md;
|
|
|
|
&:last-child {
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
& > button {
|
|
color: $hl;
|
|
|
|
&:hover {
|
|
color: inherit;
|
|
}
|
|
}
|
|
}
|
|
}
|