mirror of
https://github.com/coleam00/Archon.git
synced 2025-12-29 21:19:55 -05:00
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:
@@ -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 ? (
|
||||
|
||||
Reference in New Issue
Block a user