1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+cluster/cluster-issues.scss
Alex Andreev a61e20965d
ClusterOverview page refactorings (#1696)
* ClusterOverview page refactorings

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Minor test fix for MainLayoutHeader

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Replacing class name in tests

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Remove unnecessary parenthesis

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
2020-12-11 07:36:47 +02:00

56 lines
866 B
SCSS

.ClusterIssues {
min-height: 350px;
position: relative;
grid-column-start: 1;
grid-column-end: 3;
@include media("<1024px") {
grid-column-start: 1!important;
grid-column-end: 1!important;
}
.SubHeader {
.Icon {
font-size: 130%;
color: $colorError;
}
}
.Table {
.TableHead {
background-color: transparent;
border-bottom: 1px solid $borderFaintColor;
.TableCell {
padding-top: 0;
padding-bottom: floor($padding / 1.33);
}
}
.TableCell {
white-space: nowrap;
text-overflow: ellipsis;
&.message {
flex-grow: 3;
}
&.object {
flex-grow: 2;
}
}
}
.no-issues {
.Icon {
color: white;
}
.ok-title {
font-size: large;
color: $textColorAccent;
font-weight: bold;
}
}
}