Design refresh + a bunch of stuff (#2864)

Co-authored-by: hfcRed <hfcred@gmx.net>
This commit is contained in:
Kalle
2026-03-19 17:51:42 +02:00
committed by GitHub
parent fcc5c5f273
commit fef1ffc955
830 changed files with 35854 additions and 16836 deletions

View File

@@ -0,0 +1,34 @@
.container {
height: var(--chart-height, 175px);
width: var(--chart-width);
background-color: var(--chart-bg, var(--color-bg-high));
border-radius: var(--radius-box);
}
.tooltip {
border: var(--border-style);
border-radius: var(--radius-box);
background-color: var(--color-bg);
padding: var(--s-1) var(--s-2);
font-weight: var(--weight-semi);
font-size: var(--font-sm);
display: flex;
flex-direction: column;
gap: var(--s-1);
}
.tooltipValue {
margin-inline-start: auto;
min-width: 40px;
}
.dot {
background-color: var(--dot-color);
border-radius: 100%;
width: 12px;
height: 12px;
}
.dotFocused {
outline: 3px solid var(--dot-color-outline);
}