mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
21 lines
468 B
SCSS
21 lines
468 B
SCSS
.overlay {
|
|
--overlay-bg: #8cc474b8;
|
|
--overlay-active-bg: orange;
|
|
|
|
border-radius: 2px;
|
|
-webkit-font-smoothing: auto;
|
|
background-color: var(--overlay-bg);
|
|
|
|
span {
|
|
background-color: var(--overlay-bg)!important; // Rewriting inline styles from AnsiUp library
|
|
}
|
|
|
|
&.active {
|
|
background-color: var(--overlay-active-bg);
|
|
|
|
span {
|
|
background-color: var(--overlay-active-bg)!important; // Rewriting inline styles from AnsiUp library
|
|
}
|
|
}
|
|
}
|