27 lines
587 B
CSS
27 lines
587 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
html {
|
|
@apply text-gray-900;
|
|
}
|
|
body {
|
|
@apply bg-gray-50 min-h-screen;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.btn {
|
|
@apply px-4 py-2 rounded-md font-medium transition-colors duration-200;
|
|
}
|
|
.btn-primary {
|
|
@apply bg-primary-500 text-white hover:bg-primary-600;
|
|
}
|
|
.btn-secondary {
|
|
@apply bg-gray-200 text-gray-700 hover:bg-gray-300;
|
|
}
|
|
.input {
|
|
@apply px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-primary-500;
|
|
}
|
|
} |