Skip to content

Commit

Permalink
docs: adjust padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Dec 18, 2024
1 parent 95de050 commit 8473d6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
2 changes: 1 addition & 1 deletion website/src/components/faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function FAQ () {
const copyToClipboard = creatCopyToClipboard(toast)

return (
<section id='faq' className='space-y-8 pb-24'>
<section id='faq' className='space-y-8'>
<div className='space-y-6'>
<div>
<h3 className='text-xl font-semibold mb-6'>What is Splashy?</h3>
Expand Down
13 changes: 1 addition & 12 deletions website/src/components/layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,7 @@ export const ContainerLayout = ({ children }: { children: React.ReactNode }) =>
</Link>
</p>
</header>
<main
className={`pt-8 max-w-xl mx-auto px-4 ${
children &&
children.props &&
children.props.style &&
children.props.style.height > window.innerHeight
? 'pb-24'
: ''
}`}
>
{children}
</main>
<main className='pt-8 max-w-xl mx-auto px-4 pb-24'>{children}</main>
<Toaster />
<Footer />
</div>
Expand Down

0 comments on commit 8473d6e

Please sign in to comment.