Spaces:
Sleeping
Sleeping
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @layer base { | |
| body { | |
| @apply bg-gray-50 text-gray-900; | |
| } | |
| /* Custom Modern Scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| @apply bg-transparent; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| @apply bg-gray-300 rounded-full border-2 border-transparent bg-clip-padding; | |
| border-radius: 100px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| @apply bg-blue-400; | |
| } | |
| /* Firefox Support */ | |
| * { | |
| scrollbar-width: thin; | |
| scrollbar-color: #cbd5e1 transparent; | |
| } | |
| } | |