Add dashboard previous-period comparison metrics

This commit is contained in:
Chris Walsh 2021-08-12 16:01:51 -07:00
parent ae7186c32a
commit 0c304a2abc
No known key found for this signature in database
GPG key ID: 28EE0CCA6032019E
4 changed files with 91 additions and 10 deletions

View file

@ -16,4 +16,24 @@
.label {
font-size: var(--font-size-normal);
white-space: nowrap;
display: flex;
align-items: center;
gap: 5px;
}
.change {
font-size: 12px;
padding: 0 5px;
border-radius: 5px;
margin-left: 4px;
border: 1px solid var(--gray200);
color: var(--gray500);
}
.change.positive {
color: var(--green500);
}
.change.negative {
color: var(--red500);
}