2020-07-29 02:04:45 +00:00
|
|
|
.card {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
2023-02-09 16:22:36 +00:00
|
|
|
min-height: 90px;
|
2020-09-14 03:09:18 +00:00
|
|
|
min-width: 140px;
|
2020-07-29 02:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.value {
|
2023-02-09 16:22:36 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2023-02-09 07:14:11 +00:00
|
|
|
font-size: 36px;
|
|
|
|
|
font-weight: 700;
|
2020-08-12 07:23:03 +00:00
|
|
|
white-space: nowrap;
|
2023-02-09 16:22:36 +00:00
|
|
|
min-height: 60px;
|
2020-07-29 02:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.label {
|
2021-08-12 23:01:51 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2023-03-03 20:37:26 +00:00
|
|
|
font-weight: 700;
|
2023-03-09 23:18:54 +00:00
|
|
|
gap: 10px;
|
2023-02-09 16:22:36 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
|
min-height: 30px;
|
2021-08-12 23:01:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.change {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
border-radius: 5px;
|
2022-12-13 03:45:38 +00:00
|
|
|
color: var(--base500);
|
2021-08-12 23:01:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.change.positive {
|
2023-03-09 23:18:54 +00:00
|
|
|
color: var(--green700);
|
|
|
|
|
background: var(--green100);
|
2021-08-12 23:01:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.change.negative {
|
2023-03-09 23:18:54 +00:00
|
|
|
color: var(--red700);
|
|
|
|
|
background: var(--red100);
|
2020-07-29 02:04:45 +00:00
|
|
|
}
|
2022-08-26 14:40:32 +00:00
|
|
|
|
|
|
|
|
.change.plusSign::before {
|
|
|
|
|
content: '+';
|
|
|
|
|
}
|