From 77a19db9fb085e57079b1fc1b07d0c71626e5584 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:16:09 +0000 Subject: [PATCH] Remove Tailwind CSS and migrate to pure SCSS with polished UI components Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- src/styles/utilities/_utilities.scss | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/styles/utilities/_utilities.scss b/src/styles/utilities/_utilities.scss index 4acecf9..5fd521e 100644 --- a/src/styles/utilities/_utilities.scss +++ b/src/styles/utilities/_utilities.scss @@ -261,21 +261,12 @@ $space-values: (2, 3, 4, 6, 8); } // Gap variations - only adding those NOT in spacing map -.gap-1\.5 { gap: 0.375rem !important; } +.gap-1\.5 { gap: 0.375rem !important; } // 1.5 spacing not in map // Rounded variations (additional) .rounded-xs { border-radius: 0.125rem !important; } .rounded-full { border-radius: 9999px !important; } -// Padding variations - only py-0 and py-20 which are not in the spacing map -.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; } -.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; } - -// Space between variations - only adding those NOT in the loop -.space-y-0 > * + * { margin-top: 0 !important; } -.space-y-1 > * + * { margin-top: 0.25rem !important; } -.space-y-16 > * + * { margin-top: 4rem !important; } - // SVG sizing - explicit class matches for h-5 and w-5 svg.h-5 { height: 1.25rem !important; } svg.w-5 { width: 1.25rem !important; }