Singlestat value: vertical alignment fix

There is a problem with vertical alignment of Singlestat value - it's a bit lower then it has to be.
This hack fix it.
This commit is contained in:
mammuthus
2018-05-20 21:28:53 +03:00
committed by GitHub
parent c40b0ea1df
commit 0cfdd726f7

View File

@@ -10,10 +10,15 @@
display: table-cell;
vertical-align: middle;
text-align: center;
position: relative;
z-index: 1;
font-size: 3em;
font-weight: bold;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding-bottom: 10px;
}
.singlestat-panel-prefix {