You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
349 B

  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. }