mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
6acc7d37da
Fixes #17237
32 lines
548 B
SCSS
32 lines
548 B
SCSS
.singlestat-panel {
|
|
position: relative;
|
|
display: table;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.singlestat-panel-value-container {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
position: relative;
|
|
z-index: 1;
|
|
font-weight: $font-weight-semi-bold;
|
|
line-height: 1;
|
|
}
|
|
|
|
// Helps
|
|
.panel-container--no-title {
|
|
.singlestat-panel-value-container {
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.singlestat-panel-prefix {
|
|
padding-right: 20px;
|
|
}
|
|
|
|
#flotGagueValue0 {
|
|
font-weight: $font-weight-semi-bold; //please dont hurt me for this!
|
|
}
|