I'm currently working with next.js and tailwindcss.
I'm trying to remove the scroll bars from my website.
I attempted to hide the scrollbars by adding custom styles in style.css, but unfortunately, it didn't work as expected.
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
body::-webkit-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
display: none;
}