From 6dc191585c9de33988e7932b7064a7288c1f803f Mon Sep 17 00:00:00 2001 From: Mistral Vibe Date: Wed, 1 Apr 2026 09:52:06 +0200 Subject: [PATCH] style: align all pages with CLAUDE.md design system - Inputs: uniform padding (8px 12px), borderRadius 7, bg-inset background - List rows/cards: bg-subtle background, border-subtle border (bg-inset was input-only) - Invite/admin badge borders: use accent-border var instead of raw accent - Section headers: 11px, weight 500, uppercase, 0.7px letter-spacing - Notification/status banners: borderRadius 8 - Remove debug console.log statements from SettingsPage avatar upload flow Co-Authored-By: Claude Sonnet 4.6 --- web/src/pages/BandPage.tsx | 36 ++++++++-------- web/src/pages/HomePage.tsx | 2 +- web/src/pages/LoginPage.tsx | 6 +-- web/src/pages/SessionPage.tsx | 8 ++-- web/src/pages/SettingsPage.tsx | 77 ++++++++++++---------------------- web/src/pages/SongPage.tsx | 4 +- 6 files changed, 55 insertions(+), 78 deletions(-) diff --git a/web/src/pages/BandPage.tsx b/web/src/pages/BandPage.tsx index 3c0f97f..6af510c 100644 --- a/web/src/pages/BandPage.tsx +++ b/web/src/pages/BandPage.tsx @@ -254,7 +254,7 @@ export function BandPage() { value={folderInput} onChange={(e) => setFolderInput(e.target.value)} placeholder={`bands/${band.slug}/`} - style={{ width: "100%", padding: "7px 10px", background: "var(--bg-inset)", border: "1px solid var(--border)", borderRadius: 6, color: "var(--text)", fontSize: 13, fontFamily: "monospace", boxSizing: "border-box" }} + style={{ width: "100%", padding: "8px 12px", background: "var(--bg-inset)", border: "1px solid var(--border)", borderRadius: 7, color: "var(--text)", fontSize: 13, fontFamily: "monospace", boxSizing: "border-box" }} />
diff --git a/web/src/pages/SessionPage.tsx b/web/src/pages/SessionPage.tsx index 70c45bf..52e65ea 100644 --- a/web/src/pages/SessionPage.tsx +++ b/web/src/pages/SessionPage.tsx @@ -104,14 +104,14 @@ export function SessionPage() { value={labelInput} onChange={(e) => setLabelInput(e.target.value)} placeholder="e.g. pre-gig warmup" - style={{ width: "100%", padding: "7px 10px", background: "var(--bg-inset)", border: "1px solid var(--border)", borderRadius: 6, color: "var(--text)", fontSize: 13, boxSizing: "border-box", marginBottom: 10 }} + style={{ width: "100%", padding: "8px 12px", background: "var(--bg-inset)", border: "1px solid var(--border)", borderRadius: 7, color: "var(--text)", fontSize: 13, boxSizing: "border-box", marginBottom: 10 }} />