diff --git a/frontend/src/pages/CategoryPage.tsx b/frontend/src/pages/CategoryPage.tsx index 1925337..fd6c46a 100644 --- a/frontend/src/pages/CategoryPage.tsx +++ b/frontend/src/pages/CategoryPage.tsx @@ -96,7 +96,16 @@ const CategoryPage: React.FC = () => { if (hasMoreData && !streams.length) return ; return ( - + + {/* Hide Scrollbar for WebKit-based Browsers */} +
{ +const ResultsPage: React.FC = ({ }) => { const [overflow, setOverflow] = useState(false); const location = useLocation(); const navigate = useNavigate(); @@ -38,7 +38,16 @@ const ResultsPage: React.FC = ({}) => { navbarVariant="no-navbar" className="flex flex-col items-stretch justify-stretch h-[70vh] my-[15vh] p-4" contentClassName="flex flex-col items-center h-full p-4" + style={{ scrollbarWidth: "none", msOverflowStyle: "none" }} > + {/* Hide Scrollbar for WebKit-based Browsers */} +

Search results for "{query}"

@@ -128,9 +137,8 @@ const ResultsPage: React.FC = ({}) => {