File size: 423 Bytes
c9f5b32 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
background-color: #0f172a;
color: #e2e8f0;
font-family: 'Inter', sans-serif;
overflow: hidden;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1e293b;
}
::-webkit-scrollbar-thumb {
background: #475569;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #64748b;
} |