Remove Tailwind CSS and migrate to pure SCSS with polished UI components

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-19 22:16:09 +00:00
parent 4b36e2c852
commit 77a19db9fb

View File

@@ -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; }