1
0
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:
Roman 2020-07-02 16:25:18 +03:00
parent 450659e603
commit e91a7e0285
3 changed files with 4 additions and 3 deletions

View File

@ -205,7 +205,7 @@ h1, h2, h3, h4, h5, h6{
display: none;
> iframe {
height: 100%;
height: calc(100% - var(--lens-bottom-bar-height));
border: none;
}
}

View File

@ -9,7 +9,7 @@ $lens-text-color-light: #a0a0a0 !default;
$lens-primary: #3d90ce !default;
// export as css variables
* {
:root {
--lens-main-bg: #{$lens-main-bg}; // dark bg
--lens-pane-bg: #{$lens-pane-bg}; // all panels main bg
--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-light: #{$lens-text-color-light};
--lens-primary: #{$lens-primary};
--lens-bottom-bar-height: 20px;
}
// Base grayscale colors definitions

View File

@ -63,7 +63,7 @@ export default {
bottom: 0;
left: 0;
width: 100%;
height: 20px;
height: var(--lens-bottom-bar-height);
background-color: var(--lens-primary);
z-index: 2000;
}