Spaces:
Build error
Build error
| @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; | |
| } | |
| } |