diff --git a/frontend/src/App.css b/frontend/src/App.css new file mode 100644 index 0000000..b904867 --- /dev/null +++ b/frontend/src/App.css @@ -0,0 +1,28 @@ +:root { + --primary: #0052ff; + --primary-hover: #3761ff; + --primary-light: rgba(0, 82, 255, 0.1); + --success: #00c853; + --danger: #ff3d00; + --bg: #f5f5f5; + --surface: #ffffff; + --border: #e5e5e5; + --text-primary: #1a1a1a; + --text-secondary: #737373; + --radius-sm: 4px; + --radius-md: 8px; + --radius-lg: 12px; + --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06); + --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1); + --space-1: 4px; + --space-2: 8px; + --space-3: 12px; + --space-4: 16px; + --space-5: 20px; + --space-6: 24px; +} + +#root { + width: 100%; + min-height: 100vh; +}