mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Cluster Menu scrolling & tooltip fixes Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Removing forgotten console.log() Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix Landing Page in light theme Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Updating Chart on every componentDidUpdate Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
24 lines
418 B
SCSS
24 lines
418 B
SCSS
.LandingPage {
|
|
height: 100%;
|
|
text-align: center;
|
|
z-index: 0;
|
|
|
|
&::after {
|
|
content: "";
|
|
background: url(../../components/icon/crane.svg) no-repeat;
|
|
background-position: 0 35%;
|
|
background-size: 85%;
|
|
background-clip: content-box;
|
|
opacity: 1;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
position: absolute;
|
|
z-index: -1;
|
|
|
|
.theme-light & {
|
|
opacity: 0.2;
|
|
}
|
|
}
|
|
} |