insomnia/app/ui/css/components/overlay.less
Gregory Schier 14640eafd6 Some small fixes (#105)
* Fixed duplication kve bug

* Small fixes

* fixed some things
2017-03-06 09:51:58 -08:00

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;
}
}