From 9ef5b756d4e9c334c2a5098d730b6778b5954e15 Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:29:58 -0400 Subject: [PATCH] Add src/index.css --- src/index.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/index.css diff --git a/src/index.css b/src/index.css new file mode 100644 index 0000000..d5dd2d4 --- /dev/null +++ b/src/index.css @@ -0,0 +1,23 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + background-color: #1a1a2e; + color: #e0e0e0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; + -webkit-font-smoothing: antialiased; + user-select: none; +} + +/* Custom scrollbar */ +::-webkit-scrollbar { width: 6px; } +::-webkit-scrollbar-track { background: #1a1a2e; } +::-webkit-scrollbar-thumb { background: #0f3460; border-radius: 3px; } +::-webkit-scrollbar-thumb:hover { background: #e94560; }