14 lines
514 B
CSS
14 lines
514 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer components {
|
|
.input-field {
|
|
@apply w-full rounded-lg border border-gray-300 bg-white py-2.5 px-4 text-gray-900 placeholder-gray-400 shadow-sm focus:border-primary-500 focus:ring-2 focus:ring-primary-500/30 outline-none;
|
|
}
|
|
|
|
.btn-primary {
|
|
@apply w-full rounded-lg bg-primary-600 text-white shadow-md hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-primary-500/40 disabled:opacity-50 disabled:cursor-not-allowed;
|
|
}
|
|
}
|