fix(styles): resolve design system audit violations

- Replace off-grid spacing (3px, 5px) with space tokens (--space-0h, --space-1)
- Replace below-minimum font-size 9px with var(--text-xs) in calendar, dashboard, notes
- Replace hardcoded 2.5rem with var(--text-4xl) in weather widget
- Replace hardcoded box-shadow with var(--shadow-sm) in toggle thumb
- Replace 0.85em and #666 with type/color tokens in print styles
This commit is contained in:
Ulas
2026-04-04 23:07:39 +02:00
parent 08159ec8b4
commit 187af593f7
6 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -56,7 +56,7 @@
display: flex;
background-color: var(--color-surface-2);
border-radius: var(--radius-sm);
padding: 3px;
padding: var(--space-0h);
gap: 2px;
}
@@ -467,7 +467,7 @@
justify-content: center;
min-width: 18px;
height: 18px;
padding: 0 5px;
padding: 0 var(--space-1);
border-radius: var(--radius-full);
background-color: var(--color-danger);
color: #fff;