@tailwind base;
@tailwind components;
@tailwind utilities;



@layer components {
}

nav.pagy{
  @apply text-base flex items-center justify-center gap-2 my-2;
  a{
    @apply block py-1 px-3 hover:bg-slate-50;
    &[aria-label]{
      @apply border rounded cursor-pointer;
    }
    &[aria-current]{
      @apply border rounded bg-slate-100 cursor-pointer;
    }
  }
}
