Spaces:
Build error
Build error
File size: 1,050 Bytes
c85520a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-gray-50 text-gray-900 dark:bg-dark-bg dark:text-gray-100 transition-colors duration-300;
}
}
@layer components {
.btn {
@apply inline-flex items-center justify-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-offset-2 transition-colors duration-200;
}
.btn-primary {
@apply btn bg-primary-600 text-white hover:bg-primary-700 focus:ring-primary-500;
}
.btn-secondary {
@apply btn bg-white text-gray-700 border-gray-300 hover:bg-gray-50 dark:bg-dark-surface dark:text-gray-200 dark:border-gray-600 dark:hover:bg-gray-700;
}
.card {
@apply bg-white rounded-lg shadow-sm border border-gray-200 dark:bg-dark-surface dark:border-dark-border p-6;
}
.input-field {
@apply w-full rounded-md border-gray-300 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:bg-dark-bg dark:border-gray-600 dark:text-white sm:text-sm;
}
} |