mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
30 lines
552 B
Plaintext
30 lines
552 B
Plaintext
@import '../constants/dimensions';
|
|
|
|
.graphql-editor {
|
|
display: grid;
|
|
height: 100%;
|
|
grid-template-rows: minmax(0, auto)
|
|
min-content
|
|
min-content
|
|
min-content
|
|
minmax(0, min-content)
|
|
min-content;
|
|
|
|
& > h2 {
|
|
color: var(--hl);
|
|
padding: @padding-xs @padding-sm;
|
|
font-size: @font-size-md;
|
|
border-top: 1px dashed var(--hl-sm);
|
|
}
|
|
|
|
.graphql-editor__query, .graphql-editor__variables {
|
|
height: 100%;
|
|
max-height: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.graphql-editor__query .cm-attribute {
|
|
color: var(--color-info);
|
|
}
|
|
}
|