Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 442 Bytes

hiding-scrollbars.md

File metadata and controls

18 lines (14 loc) · 442 Bytes

Hiding scroll bars in Tailwind CSS

To hide scroll bars with TailWind we can add a new @layer to utilities classes to our input.css. Here we can tell the browser we dont want those ugly scroll bars

@layer utilities {
  /* Chrome, Safari and Opera */
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }

  .no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
}