From b07afcdb9a13855de9ec19c3d4415fa754a4e246 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Tue, 20 Jan 2026 16:52:03 +0000 Subject: [PATCH] refactor: remove Tailwind utility classes from globals.css Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) --- src/app/globals.css | 65 --------------------------------------------- 1 file changed, 65 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index cc291ca..c8c7e61 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -60,68 +60,3 @@ select { outline: 2px solid var(--mat-sys-primary); outline-offset: 2px; } - -/* M3 utility classes */ -.flex { - display: flex; -} - -.flex-col { - flex-direction: column; -} - -.items-center { - align-items: center; -} - -.justify-between { - justify-content: space-between; -} - -.gap-2 { - gap: 0.5rem; -} - -.gap-4 { - gap: 1rem; -} - -.p-4 { - padding: 1rem; -} - -.p-6 { - padding: 1.5rem; -} - -.mb-2 { - margin-bottom: 0.5rem; -} - -.mb-4 { - margin-bottom: 1rem; -} - -.space-y-4 > * + * { - margin-top: 1rem; -} - -.space-y-6 > * + * { - margin-top: 1.5rem; -} - -.text-sm { - font-size: 0.875rem; -} - -.font-medium { - font-weight: 500; -} - -.font-semibold { - font-weight: 600; -} - -.text-muted-foreground { - color: var(--mat-sys-on-surface-variant); -}