Skip to content

Commit

Permalink
adjust mobile styling
Browse files Browse the repository at this point in the history
  • Loading branch information
alissacrane-cb committed Aug 8, 2024
1 parent 7a23f10 commit 9fd5ee3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function Page() {
>
<OnchainkitSvg />
</a>
<div className="flex gap-3">
<div className="flex gap-3 pt-3 md:pt-0">
<SignupButton />
{!address && <LoginButton />}
</div>
Expand Down
5 changes: 3 additions & 2 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const docLinks = [

export default function Footer() {
return (
<section className="mt-12 mb-6 flex w-full flex-col justify-between gap-2 md:flex-row ">
<section className='mt-12 mb-6 flex w-full flex-col justify-between gap-2 pb-4 md:flex-row md:pb-0'>
<aside className="flex items-center justify-center md:justify-start">
<h3 className="mr-2 text-m">
Built with love by{' '}
Expand All @@ -28,12 +28,13 @@ export default function Footer() {
target="_blank"
rel="noreferrer"
title="OnchainKit"
className="font-semibold hover:text-indigo-600"
>
OnchainKit
</a>
</h3>
</aside>
<ul className="flex max-w-full flex-wrap justify-center gap-6 md:justify-start">
<ul className='flex max-w-full flex-wrap justify-center gap-3 md:justify-start md:gap-6'>
{docLinks.map(({ href, title }) => (
<li className="flex" key={href}>
<a
Expand Down
2 changes: 1 addition & 1 deletion src/components/TransactionWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function TransactionWrapper({
className="w-[450px]"
>
<TransactionButton
className="mt-0 mr-auto ml-auto w-[450px] text-[white]"
className='mt-0 mr-auto ml-auto w-[450px] max-w-full text-[white]'
text="Collect"
/>
<TransactionStatus>
Expand Down

0 comments on commit 9fd5ee3

Please sign in to comment.