mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
523 B
31 lines
523 B
// Graphiql hints
|
|
::ng-deep {
|
|
@import '~graphiql/dist/show-hint';
|
|
}
|
|
|
|
:host ::ng-deep {
|
|
@import '~graphiql/graphiql';
|
|
|
|
.graphiql-container {
|
|
& {
|
|
@include absolute(0, 0, 0, 0);
|
|
}
|
|
|
|
& * {
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
// sass-lint:disable class-name-format
|
|
& .editorWrap {
|
|
overflow: hidden;
|
|
}
|
|
|
|
svg {
|
|
fill: $color-dark-black;
|
|
}
|
|
}
|
|
|
|
.CodeMirror-linenumbers {
|
|
min-width: 29px;
|
|
}
|
|
}
|
|
|