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