웹사이트에서 스크롤바를 보이지않게 하고 스크롤기능만 사용하고 싶을 때 tailwind를 이용해 적용하는 방법입니다.
npm intsall tailwind-scrollbar-hideyarn add tailwind-scrollbar-hidemodule.exports = {
  mode: "jit",
  purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
  darkMode: false, // or 'media' or 'class'
  theme: {
    extend: {},
  },
  variants: {
    extend: {},
  },
  plugins: [require("tailwind-scrollbar-hide")],  // 이 부분을 추가해줍니다!
};
<ul className='order-1 flex flex-col overflow-y-auto lg:order-none ..어쩌고다른속성 scrollbar-hide'>