mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
56a86168c4
* Fixed duplication kve bug * Some minor css * Fix modal refs * Got variable modal showing * A bit more * Errors and debounced render * Finished naive editors * Some key value editor fixes * Yet even more one-line fixes * Added some transitions * Small fixes * Added key flattening util
15 lines
348 B
Plaintext
15 lines
348 B
Plaintext
.overlay {
|
|
background-color: var(--color-bg);
|
|
color: var(--color-font);
|
|
transition: opacity 200ms ease-out;
|
|
opacity: 1;
|
|
|
|
// 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 {
|
|
opacity: 0;
|
|
z-index: -9999;
|
|
}
|
|
}
|