Skip to content

Commit 6188df9

Browse files
Merge pull request #97 from 0x-Rahul/fix/heading-clipping
fix: y in 'My Cats' heading was clipped
2 parents e9e2a4a + 5b4e594 commit 6188df9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/app/my-cats/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ export default function MyCATsPage() {
693693
>
694694
<div className="flex flex-col md:flex-row justify-between items-center mb-12">
695695
<motion.h1
696-
className="text-4xl md:text-5xl font-extrabold bg-clip-text text-transparent bg-gradient-to-r from-blue-500 to-blue-300 dark:from-[#FFD600] dark:to-yellow-100 mb-4 md:mb-0 drop-shadow-lg"
696+
className="text-4xl md:text-5xl font-extrabold bg-clip-text text-transparent leading-[1.2] pb-1.5 antialiased bg-gradient-to-r from-blue-500 to-blue-300 dark:from-[#FFD600] dark:to-yellow-100 mb-4 md:mb-0 drop-shadow-lg"
697697
initial={{ opacity: 0, y: -20 }}
698698
animate={{ opacity: 1, y: 0 }}
699699
transition={{ duration: 0.5 }}

0 commit comments

Comments
 (0)