Skip to content

Commit f47c699

Browse files
committed
fix(ui): missing padding
1 parent 2ddba2e commit f47c699

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/marketing/explore.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const Explore = ({ className }: { className: string }) => {
1818
<h3 className="category-xl pl-6 font-mono text-xl tracking-widest text-muted-foreground">
1919
{category.title}
2020
</h3>
21-
<div className="border-l border-muted pb-8 pl-6 pt-4">
21+
<div className="border-l border-muted px-6 pb-8 pt-4">
2222
<DocsList
2323
name={category.slug}
2424
limit={4}
@@ -33,7 +33,7 @@ export const Explore = ({ className }: { className: string }) => {
3333
</h3>
3434
<div
3535
className={
36-
"grid grid-cols-4 gap-2 border-l border-muted pb-1 pl-6 pt-4 sm:grid-cols-8 lg:grid-cols-16"
36+
"grid grid-cols-4 gap-2 border-l border-muted px-6 pb-1 pt-4 sm:grid-cols-8 lg:grid-cols-16"
3737
}
3838
>
3939
<IconExemples limit={32} />

src/components/marketing/hero/hero.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const Hero = ({ className }: { className?: string }) => {
2828
<h1 className="mt-4 font-display text-4xl font-bold leading-tight tracking-tight md:text-5xl lg:text-6xl">
2929
<Balancer>
3030
Everything you need to build your{" "}
31-
<span className="bg-gradient bg-clip-text text-transparent">React app</span>{" "}
31+
<span className="bg-gradient bg-clip-text text-transparent">React app</span>
3232
</Balancer>
3333
</h1>
3434
<h2 className="text-md mt-6 text-muted-foreground md:text-lg lg:text-xl">

0 commit comments

Comments
 (0)