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