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