| 1234567891011121314151617181920212223242526272829303132333435 |
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- @layer base {
- body {
- @apply bg-gray-50 text-gray-900 antialiased;
- }
- }
- @layer components {
- .btn {
- @apply px-4 py-2 rounded-lg font-medium transition-colors duration-200 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-800 hover:bg-gray-300 focus:ring-gray-500;
- }
- .btn-danger {
- @apply bg-red-600 text-white hover:bg-red-700 focus:ring-red-500;
- }
- .input {
- @apply w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent;
- }
- .card {
- @apply bg-white rounded-xl shadow-sm border border-gray-200;
- }
- }
|