style: reduce typography and spacing design tokens for higher layout density in admin panel
TaxBaik CI/CD / build-and-deploy (push) Successful in 52s

This commit is contained in:
2026-06-30 22:19:16 +09:00
parent 15f5dcf4ea
commit c626c164f8
2 changed files with 31 additions and 31 deletions
+8 -8
View File
@@ -80,49 +80,49 @@
}, },
LayoutProperties = new LayoutProperties() LayoutProperties = new LayoutProperties()
{ {
DefaultBorderRadius = "8px" DefaultBorderRadius = "6px"
}, },
Typography = new Typography() Typography = new Typography()
{ {
Default = new Default() Default = new Default()
{ {
FontSize = ".875rem", FontSize = ".8125rem",
FontWeight = 400, FontWeight = 400,
LineHeight = 1.5 LineHeight = 1.5
}, },
H1 = new H1() H1 = new H1()
{ {
FontSize = "2.5rem", FontSize = "1.75rem",
FontWeight = 600, FontWeight = 600,
LineHeight = 1.2 LineHeight = 1.2
}, },
H2 = new H2() H2 = new H2()
{ {
FontSize = "2rem", FontSize = "1.5rem",
FontWeight = 600, FontWeight = 600,
LineHeight = 1.3 LineHeight = 1.3
}, },
H3 = new H3() H3 = new H3()
{ {
FontSize = "1.75rem", FontSize = "1.25rem",
FontWeight = 600, FontWeight = 600,
LineHeight = 1.3 LineHeight = 1.3
}, },
H4 = new H4() H4 = new H4()
{ {
FontSize = "1.5rem", FontSize = "1.1rem",
FontWeight = 600, FontWeight = 600,
LineHeight = 1.4 LineHeight = 1.4
}, },
H5 = new H5() H5 = new H5()
{ {
FontSize = "1.25rem", FontSize = "0.95rem",
FontWeight = 500, FontWeight = 500,
LineHeight = 1.4 LineHeight = 1.4
}, },
H6 = new H6() H6 = new H6()
{ {
FontSize = "1rem", FontSize = "0.85rem",
FontWeight = 500, FontWeight = 500,
LineHeight = 1.5 LineHeight = 1.5
} }
+23 -23
View File
@@ -64,35 +64,35 @@
/* Spacing Scale */ /* Spacing Scale */
--space-0: 0; --space-0: 0;
--space-1: 4px; --space-1: 3px;
--space-2: 8px; --space-2: 6px;
--space-3: 12px; --space-3: 10px;
--space-4: 16px; --space-4: 12px;
--space-5: 20px; --space-5: 16px;
--space-6: 24px; --space-6: 20px;
--space-7: 28px; --space-7: 24px;
--space-8: 32px; --space-8: 28px;
--space-10: 40px; --space-10: 34px;
--space-12: 48px; --space-12: 40px;
--space-16: 64px; --space-16: 52px;
/* Border Radius */ /* Border Radius */
--radius-sm: 4px; --radius-sm: 3px;
--radius-md: 8px; --radius-md: 6px;
--radius-lg: 12px; --radius-lg: 8px;
--radius-xl: 16px; --radius-xl: 12px;
--radius-full: 9999px; --radius-full: 9999px;
/* Typography Scale */ /* Typography Scale */
--font-family-base: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; --font-family-base: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--font-size-xs: 0.75rem; --font-size-xs: 0.7rem;
--font-size-sm: 0.875rem; --font-size-sm: 0.75rem;
--font-size-base: 1rem; --font-size-base: 0.82rem;
--font-size-lg: 1.125rem; --font-size-lg: 0.95rem;
--font-size-xl: 1.25rem; --font-size-xl: 1.1rem;
--font-size-2xl: 1.5rem; --font-size-2xl: 1.3rem;
--font-size-3xl: 1.875rem; --font-size-3xl: 1.6rem;
--font-size-4xl: 2.25rem; --font-size-4xl: 2rem;
--font-weight-regular: 400; --font-weight-regular: 400;
--font-weight-medium: 500; --font-weight-medium: 500;