File size: 588 Bytes
c95a333 | 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 26 27 28 | @tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-deep-bg text-white overflow-x-hidden;
background-image:
radial-gradient(circle at 50% 0%, rgba(188, 19, 254, 0.15) 0%, transparent 50%),
radial-gradient(circle at 0% 50%, rgba(0, 243, 255, 0.1) 0%, transparent 50%);
}
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #050511;
}
::-webkit-scrollbar-thumb {
background: #1a1a2e;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #00f3ff;
}
|