tailwind.css 349 B

123456789101112131415161718192021
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @layer components {
  5. .flex-c {
  6. @apply flex justify-center items-center;
  7. }
  8. .flex-ac {
  9. @apply flex justify-around items-center;
  10. }
  11. .flex-bc {
  12. @apply flex justify-between items-center;
  13. }
  14. .navbar-bg-hover {
  15. @apply dark:text-white dark:hover:!bg-[#242424];
  16. }
  17. }