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.

33 lines
645 B

7 months ago
  1. .pagy {
  2. @apply flex space-x-1 font-semibold text-sm text-gray-500;
  3. .page {
  4. a {
  5. @apply block rounded-lg px-3 py-1 bg-gray-200;
  6. &:hover {
  7. @apply bg-gray-300;
  8. }
  9. }
  10. &.active a {
  11. @apply text-white bg-gray-400 cursor-default;
  12. }
  13. &.disabled a {
  14. @apply text-gray-300 bg-gray-100 cursor-default;
  15. }
  16. &.gap {}
  17. }
  18. .pagy-combo-input,
  19. &.pagy-items-selector-js {
  20. @apply inline-block whitespace-nowrap bg-gray-200 rounded-lg px-3 py-0.5;
  21. input {
  22. @apply bg-gray-100 border-none rounded-md;
  23. }
  24. }
  25. }