Spaces:
Sleeping
Sleeping
File size: 1,238 Bytes
f9305b4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
#logo {
padding: 12px 0 8px;
}
#logo-and-title {
gap: 16px;
}
#dashboard-title {
margin-bottom: 0.5rem;
}
#left-main {
width: 300px;
}
.card-kpi .card-footer {
font-size: 1rem;
}
.card-kpi .card-footer .material-symbols-outlined {
font-size: 1.25rem;
}
.flex-container-regional {
background: var(--surfaces-bg-02);
display: flex;
flex-direction: column;
gap: 20px;
padding: 12px;
}
.flex-container-regional .card-kpi .material-symbols-outlined {
font-size: 1.2rem;
}
.flex-container-regional .card-kpi .card-footer {
font-size: 0.8rem;
}
.flex-container-regional .card-kpi .card-footer .material-symbols-outlined {
font-size: 1rem;
}
.flex-container-regional .card-kpi,
.flex-container-regional .card {
height: unset;
padding: 0.5rem;
}
.flex-container-regional .card-kpi .card-body {
font-size: 2vh;
padding: 0.25rem;
}
.flex-container-regional .card-kpi-title {
font-size: 1rem;
}
.anchor-container {
background: var(--main-container-bg-color);
border-top: 1px solid var(--border-subtleAlpha01);
bottom: 0;
display: flex;
font-size: 11px;
font-weight: 600;
gap: 2rem;
height: 24px;
padding: 2px 12px;
place-content: baseline right;
position: fixed;
right: 0;
}
|