anycoder-a25bb4af / styles /globals.css
IamVicky111's picture
Upload styles/globals.css with huggingface_hub
da7136e verified
raw
history blame contribute delete
315 Bytes
@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;
}
}