Fix project cards horizontal scrollbar visibility (#295)

Addresses issue #293 by replacing hide-scrollbar with scrollbar-thin
class to ensure users can see and interact with the horizontal scrollbar
when project cards overflow.
This commit is contained in:
Eric Fisher
2025-08-18 10:14:25 -05:00
committed by GitHub
parent 3d368c9194
commit 868ebe1f78

View File

@@ -688,7 +688,7 @@ export function ProjectPage({
{/* Project Cards - Horizontally Scrollable */}
{!isLoadingProjects && !projectsError && (
<motion.div className="relative mb-10" variants={itemVariants}>
<div className="overflow-x-auto pb-4 hide-scrollbar">
<div className="overflow-x-auto pb-4 scrollbar-thin">
<div className="flex gap-4 min-w-max">
{projects.map(project => (
project.creationProgress ? (