index.css 890 B

123456789101112131415161718192021222324252627282930313233
  1. @tailwind components;
  2. @layer components {
  3. .btn {
  4. @apply inline-flex justify-center items-center content-center h-9 leading-5 rounded-lg px-4 py-2 text-base cursor-pointer whitespace-nowrap;
  5. }
  6. ;
  7. .btn-default {
  8. @apply border-solid border border-gray-200 cursor-pointer text-gray-700 hover:bg-white hover:shadow-sm hover:border-gray-300;
  9. }
  10. .btn-default-disabled {
  11. @apply border-solid border border-gray-200 bg-gray-200 cursor-not-allowed text-gray-800;
  12. }
  13. body .btn-primary {
  14. @apply bg-primary-600 hover:bg-primary-600/75 cursor-pointer text-white hover:shadow-sm;
  15. }
  16. body .btn-primary-disabled {
  17. @apply bg-primary-200 cursor-not-allowed text-white;
  18. }
  19. .btn-warning {
  20. @apply bg-red-600 hover:bg-red-600/75 cursor-pointer text-white hover:shadow-sm;
  21. }
  22. .btn-warning-disabled {
  23. @apply bg-red-600/75 cursor-not-allowed text-white;
  24. }
  25. }