Skip to content

Commit 667979e

Browse files
style: 🎨 Fixed Padding Issue
1 parent 12b25c7 commit 667979e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/app/(landing)/_components/sections/open-source.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ export const OpenSourceSection = () => {
1212
return (
1313
<section ref={sectionRef} className="container min-h-[25rem] py-24">
1414
<motion.div
15-
className="flex flex-col items-center"
15+
className="flex flex-col items-center gap-y-5"
1616
initial={false}
1717
animate={{ y: isInView ? 0 : 10, opacity: isInView ? 1 : 0 }}
1818
transition={{ delay: 0.5, duration: 0.75, ease: "easeIn" }}
1919
>
20-
<WordPullUp className="text-center">Proudly Open Source</WordPullUp>
20+
<WordPullUp className="leading-tight text-center">
21+
Proudly Open Source
22+
</WordPullUp>
2123
<p className="max-w-xl text-center text-lg leading-relaxed text-muted-foreground">
2224
Our source code is available on GitHub - feel free to read, review, or
2325
contribute to it however you want!

0 commit comments

Comments
 (0)