Improve scrolling experience by hiding all scrollbars

Hide all scrollbars globally using CSS and remove specific scrollbar styles from the SimpleCarousel component.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 2eb1084e-b728-4449-9231-f1665924c8d5
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/2eb1084e-b728-4449-9231-f1665924c8d5/yexZbDm
This commit is contained in:
sebastjanartic 2025-08-29 17:28:40 +00:00
parent 5f1d516882
commit 53857c2a83
3 changed files with 26 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -125,11 +125,10 @@ export default function SimpleCarousel({ category, onVideoClick }: SimpleCarouse
{/* Scroll container */}
<div
ref={scrollContainerRef}
className="overflow-x-auto scrollbar-hide"
className="overflow-x-auto"
style={{
scrollbarWidth: 'none',
msOverflowStyle: 'none',
WebkitScrollbar: { display: 'none' }
msOverflowStyle: 'none'
}}
>
<div className="flex space-x-4 pb-4 w-max">

View File

@ -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%);