how to style scrollbar with tailwind

this works
@layer utilities {
  .no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }

but webkit doesnt works
@layer utilities {
  /* Hide scrollbar for Chrome, Safari and Opera */
  .scrollbar::-webkit-scrollbar {
    width: 100px;
  }
}

<div className="scrollbar flex flex-1 flex-col gap-1 overflow-auto">
      <Conversation />
      <Conversation />
 </div>
Was this page helpful?