mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
fix bottom-bar overlap
Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
parent
450659e603
commit
e91a7e0285
@ -205,7 +205,7 @@ h1, h2, h3, h4, h5, h6{
|
|||||||
display: none;
|
display: none;
|
||||||
|
|
||||||
> iframe {
|
> iframe {
|
||||||
height: 100%;
|
height: calc(100% - var(--lens-bottom-bar-height));
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,7 +9,7 @@ $lens-text-color-light: #a0a0a0 !default;
|
|||||||
$lens-primary: #3d90ce !default;
|
$lens-primary: #3d90ce !default;
|
||||||
|
|
||||||
// export as css variables
|
// export as css variables
|
||||||
* {
|
:root {
|
||||||
--lens-main-bg: #{$lens-main-bg}; // dark bg
|
--lens-main-bg: #{$lens-main-bg}; // dark bg
|
||||||
--lens-pane-bg: #{$lens-pane-bg}; // all panels main bg
|
--lens-pane-bg: #{$lens-pane-bg}; // all panels main bg
|
||||||
--lens-dock-bg: #{$lens-dock-bg}; // terminal and top menu bar
|
--lens-dock-bg: #{$lens-dock-bg}; // terminal and top menu bar
|
||||||
@ -18,6 +18,7 @@ $lens-primary: #3d90ce !default;
|
|||||||
--lens-text-color: #{$lens-text-color};
|
--lens-text-color: #{$lens-text-color};
|
||||||
--lens-text-color-light: #{$lens-text-color-light};
|
--lens-text-color-light: #{$lens-text-color-light};
|
||||||
--lens-primary: #{$lens-primary};
|
--lens-primary: #{$lens-primary};
|
||||||
|
--lens-bottom-bar-height: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Base grayscale colors definitions
|
// Base grayscale colors definitions
|
||||||
|
|||||||
@ -63,7 +63,7 @@ export default {
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 20px;
|
height: var(--lens-bottom-bar-height);
|
||||||
background-color: var(--lens-primary);
|
background-color: var(--lens-primary);
|
||||||
z-index: 2000;
|
z-index: 2000;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user