@import "tailwindcss";

@layer base {
  * {
    ::-webkit-scrollbar {
      @apply h-2 w-2;
    }
    ::-webkit-scrollbar-track {
      @apply bg-background;
    }
    ::-webkit-scrollbar-thumb {
      @apply bg-border rounded;
    }
    ::-webkit-scrollbar-thumb:hover {
      @apply bg-border/80;
    }
    ::-webkit-scrollbar-button {
      @apply hidden;
    }
    ::-webkit-scrollbar-corner {
      @apply bg-background;
    }
  }
}
