diff --git a/attached_assets/image_1756488439771.png b/attached_assets/image_1756488439771.png new file mode 100644 index 0000000..fa8201c Binary files /dev/null and b/attached_assets/image_1756488439771.png differ diff --git a/client/src/components/simple-carousel.tsx b/client/src/components/simple-carousel.tsx index f439383..206d33c 100644 --- a/client/src/components/simple-carousel.tsx +++ b/client/src/components/simple-carousel.tsx @@ -125,11 +125,10 @@ export default function SimpleCarousel({ category, onVideoClick }: SimpleCarouse {/* Scroll container */}
diff --git a/client/src/index.css b/client/src/index.css index 3b895dc..242a934 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -2,6 +2,30 @@ @tailwind components; @tailwind utilities; +/* Hide ALL scrollbars globally - especially for mobile */ +* { + scrollbar-width: none !important; + -ms-overflow-style: none !important; +} + +*::-webkit-scrollbar { + display: none !important; + width: 0 !important; + height: 0 !important; +} + +html, body { + scrollbar-width: none !important; + -ms-overflow-style: none !important; +} + +html::-webkit-scrollbar, +body::-webkit-scrollbar { + display: none !important; + width: 0 !important; + height: 0 !important; +} + :root { --background: hsl(222, 84%, 4.9%); --foreground: hsl(210, 40%, 98%);