mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
14640eafd6
* Fixed duplication kve bug * Small fixes * fixed some things
12 lines
280 B
Plaintext
12 lines
280 B
Plaintext
.overlay {
|
|
background-color: var(--color-bg);
|
|
color: var(--color-font);
|
|
|
|
// NOTE: Hiding with `return null` or `display: none` seems to cause
|
|
// the pane to go white for some reason. So, we're hiding it behind
|
|
// instead.
|
|
.overlay--hidden {
|
|
z-index: -10000;
|
|
}
|
|
}
|