mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Previously if there were no metrics for the current selected options then you couldn't switch options. Signed-off-by: Sebastian Malton <sebastian@malton.name>
23 lines
416 B
SCSS
23 lines
416 B
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
.ClusterMetrics {
|
|
position: relative;
|
|
min-height: 280px;
|
|
padding: calc(var(--margin) * 2);
|
|
background: var(--contentColor);
|
|
|
|
.chart {
|
|
:global(.chart-container) {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.empty {
|
|
text-align: center;
|
|
}
|
|
}
|