Skip to content

Commit

Permalink
Smaller spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Plesnik committed Nov 18, 2024
1 parent 2002ad6 commit e337504
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions src/components/WorkTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ const WorkTile = ({ children, title, links, className, text }: WorkTileWrapperPr
{title}
</Heading>
)}
<div className="flex max-w-screen-lg flex-col gap-8">
<Paragraph>{text}</Paragraph>
<div className="flex flex-col gap-4 md:flex-1">{children}</div>
</div>
{links && <div className="flex flex-col gap-1">{links}</div>}
{text && <Paragraph>{text}</Paragraph>}
<div className="flex max-w-screen-lg flex-col gap-4 md:flex-1">{children}</div>
{links && <div className="flex flex-col gap-y-2">{links}</div>}
</div>
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import WorkThankful from '@/content/WorkThankful'

const Home = () => {
return (
<div className="flex flex-col gap-48">
<div className="flex flex-col gap-24">
<Intro />
<Chart />
<WorkThankful />
Expand Down

0 comments on commit e337504

Please sign in to comment.