1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/dashboard/client/components/+cluster/cluster-issues.scss
Jari Kolehmainen db4dca3005 lens app source code
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2020-03-15 09:46:21 +02:00

59 lines
886 B
SCSS

.ClusterIssues {
min-height: 350px;
position: relative;
@include media("<1024px") {
grid-column-start: 1!important;
grid-column-end: 1!important;
}
&.wide {
grid-column-start: 1;
grid-column-end: 3;
}
.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;
}
}
}