Skip to content

Commit bc0d3f0

Browse files
fix: remove conflicting flex class to ensure hidden works properly
- Removed 'flex' class that conflicts with 'hidden' class - Addresses Diamond AI code review feedback about CSS display conflicts - Ensures mobile warning box is properly hidden on all screen sizes Co-Authored-By: [email protected] <[email protected]>
1 parent bc9638f commit bc0d3f0

File tree

1 file changed

+1
-1
lines changed
  • apps/web/client/src/app/_components/hero

1 file changed

+1
-1
lines changed

apps/web/client/src/app/_components/hero/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export function Hero() {
8484
</motion.div>
8585

8686
</div>
87-
<motion.div className="hidden text-balance flex flex-col gap-4 items-center relative z-20 mx-10 text-foreground-secondary bg-foreground-secondary/10 backdrop-blur-lg rounded-lg border-[0.5px] border-foreground-secondary/20 p-4"
87+
<motion.div className="hidden text-balance flex-col gap-4 items-center relative z-20 mx-10 text-foreground-secondary bg-foreground-secondary/10 backdrop-blur-lg rounded-lg border-[0.5px] border-foreground-secondary/20 p-4"
8888
initial={{ opacity: 0, filter: "blur(4px)" }}
8989
animate={{ opacity: 1, filter: "blur(0px)" }}
9090
transition={{ duration: 0.6, delay: 0.6, ease: "easeOut" }}

0 commit comments

Comments
 (0)