mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
19 lines
329 B
Plaintext
19 lines
329 B
Plaintext
@import '../constants/dimensions';
|
|
@import '../constants/colors';
|
|
|
|
.query-editor {
|
|
display: grid;
|
|
height: 100%;
|
|
grid-template-rows: auto minmax(0, 1fr) @line-height-md;
|
|
grid-template-columns: 100%;
|
|
|
|
.query-editor__preview code {
|
|
overflow: auto;
|
|
max-height: 3em;
|
|
}
|
|
|
|
.key-value-editor {
|
|
padding: 0;
|
|
}
|
|
}
|