From 5a0ffcc73b03063e5fa21c355f00c7c6c6d70764 Mon Sep 17 00:00:00 2001 From: Christian Werner Date: Fri, 31 Oct 2025 12:18:41 +0100 Subject: [PATCH] fix dashbord style --- .../src/app/components/dashboard/dashboard.component.scss | 2 +- src/angular/frontend/src/app/pipes/short-number.pipe.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/angular/frontend/src/app/components/dashboard/dashboard.component.scss b/src/angular/frontend/src/app/components/dashboard/dashboard.component.scss index 7275af3..bda91ba 100644 --- a/src/angular/frontend/src/app/components/dashboard/dashboard.component.scss +++ b/src/angular/frontend/src/app/components/dashboard/dashboard.component.scss @@ -11,7 +11,7 @@ .panel-header { display: flex; - gap: 1rem; + gap: 0.5ch; font-size: 2rem; } .description { diff --git a/src/angular/frontend/src/app/pipes/short-number.pipe.ts b/src/angular/frontend/src/app/pipes/short-number.pipe.ts index 6c1bb1b..b1b1197 100644 --- a/src/angular/frontend/src/app/pipes/short-number.pipe.ts +++ b/src/angular/frontend/src/app/pipes/short-number.pipe.ts @@ -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}`; } }