mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
1df3ba4531
* Initial GraphQL support * Better error handling and formatting
25 lines
530 B
Plaintext
25 lines
530 B
Plaintext
@import '../constants/dimensions';
|
|
|
|
.graphql-editor {
|
|
display: grid;
|
|
height: 100%;
|
|
grid-template-rows: minmax(0, auto) 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);
|
|
}
|
|
}
|