anycoder-5bef383c / styles /globals.css
Cambera's picture
Upload styles/globals.css with huggingface_hub
6c9e4ef verified
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family: 'Inter', sans-serif;
}
}
@layer components {
.btn {
@apply px-4 py-2 rounded-md font-medium transition;
}
.btn-primary {
@apply bg-primary text-white hover:bg-opacity-90;
}
.btn-secondary {
@apply bg-secondary text-primary hover:bg-gray-200;
}
}