fix dashbord style

This commit is contained in:
Christian Werner 2025-10-31 12:18:41 +01:00
parent 84144b6472
commit 5a0ffcc73b
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
.panel-header {
display: flex;
gap: 1rem;
gap: 0.5ch;
font-size: 2rem;
}
.description {

View File

@ -27,7 +27,7 @@ export class ShortNumberPipe implements PipeTransform {
const sliced = integer + (d ? '.' + d : '');
const suffix = this.suffixes[exp - 1];
return `${sliced} ${suffix}`;
return `${sliced}${suffix}`;
}
}