Refactor metrics styles to allow for standalone metrics
This commit is contained in:
parent
3d7e3e6b9c
commit
61a693c656
|
@ -6,7 +6,6 @@
|
|||
.metric {
|
||||
padding: 0.75em 1em;
|
||||
border: 1px solid $grey-blue;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-width: 120px;
|
||||
|
@ -50,15 +49,25 @@
|
|||
}
|
||||
}
|
||||
|
||||
.label {
|
||||
font-size: 1.1em;
|
||||
font-weight: $weight-semibold;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.value {
|
||||
font-size: 2em;
|
||||
margin-bottom: 0;
|
||||
&.is-hollow {
|
||||
border-color: transparent;
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.metric {
|
||||
text-align: center;
|
||||
|
||||
.label {
|
||||
font-size: 1.1em;
|
||||
font-weight: $weight-semibold;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.value {
|
||||
font-size: 2em;
|
||||
margin-bottom: 0;
|
||||
line-height: 1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue