From 72515c5a69fc84a0c0777ccd6b56b7b86ceb78de Mon Sep 17 00:00:00 2001 From: Ulas Date: Sun, 5 Apr 2026 01:23:38 +0200 Subject: [PATCH] fix(styles): resolve design system audit violations and touch scrolling - Replace hardcoded px values with design tokens (--space-0h, --space-px, --space-1, --target-sm/md/lg) across layout, calendar, dashboard CSS - Fix rgba(255,255,255,0.35) spinner border to use var(--color-glass-hover) - Fix modal close icon from off-grid 18px to 16px - Fix touch scrolling on mobile: add min-height: 0 and -webkit-overflow-scrolling: touch to .app-content --- public/components/modal.js | 18 +++++++++++++++++- public/styles/calendar.css | 6 +++--- public/styles/dashboard.css | 6 +++--- public/styles/layout.css | 33 ++++++++++++++++++--------------- 4 files changed, 41 insertions(+), 22 deletions(-) diff --git a/public/components/modal.js b/public/components/modal.js index 1045064..52cc234 100644 --- a/public/components/modal.js +++ b/public/components/modal.js @@ -195,7 +195,7 @@ export function openModal({ title, content, onSave, onDelete, size = 'md' } = {}