Spaces:
Sleeping
Sleeping
File size: 315 Bytes
da7136e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-gray-900 text-white antialiased;
}
html {
scroll-behavior: smooth;
}
}
@layer utilities {
.text-gradient {
@apply bg-gradient-to-r from-primary-400 to-accent-500 bg-clip-text text-transparent;
}
} |