Spaces:
Paused
Paused
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @layer base { | |
| body { | |
| @apply bg-gray-50 text-gray-900; | |
| } | |
| } | |
| @layer components { | |
| .btn { | |
| @apply px-4 py-2 rounded-lg font-medium transition-colors focus:outline-none focus:ring-2 focus:ring-offset-2; | |
| } | |
| .btn-primary { | |
| @apply bg-primary-600 text-white hover:bg-primary-700 focus:ring-primary-500; | |
| } | |
| .btn-secondary { | |
| @apply bg-gray-200 text-gray-900 hover:bg-gray-300 focus:ring-gray-500; | |
| } | |
| .btn-disabled { | |
| @apply opacity-50 cursor-not-allowed; | |
| } | |
| .card { | |
| @apply bg-white rounded-lg shadow-sm border border-gray-200 p-6; | |
| } | |
| .input { | |
| @apply w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent; | |
| } | |
| .label { | |
| @apply block text-sm font-medium text-gray-700 mb-2; | |
| } | |
| .badge { | |
| @apply inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium; | |
| } | |
| .badge-success { | |
| @apply bg-success-50 text-success-600; | |
| } | |
| .badge-warning { | |
| @apply bg-warning-50 text-warning-600; | |
| } | |
| .badge-error { | |
| @apply bg-error-50 text-error-600; | |
| } | |
| .badge-info { | |
| @apply bg-primary-50 text-primary-600; | |
| } | |
| } |