tailwind.css 529 B

1234567891011121314151617181920212223242526
  1. @tailwind base;
  2. @layer base {
  3. .layout-sider {
  4. @apply z-0 absolute top-16 left-0 sm:static transition-width duration-300 ease-linear
  5. }
  6. .layout-sider-open {
  7. @apply layout-sider w-64
  8. }
  9. .layout-sider-hidden {
  10. @apply layout-sider w-0 lg:w-20
  11. }
  12. .layout-sider-mask {
  13. @apply block lg:hidden z-40 w-full h-full absolute
  14. }
  15. .table-default {
  16. @apply pl-2 pr-2 bg-white dark:bg-regal-dark rounded-lg mt-2 pb-6
  17. }
  18. }
  19. @tailwind components;
  20. @tailwind utilities;