Skip to content

Commit

Permalink
ボタンのレスポンシブ対応
Browse files Browse the repository at this point in the history
  • Loading branch information
batora9 committed Mar 28, 2024
1 parent 199a3be commit 0c5fc4a
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,16 @@ export function Footer() {
/>
</Link>
</div>
<LinkButton href='/join' variant='green'>
入会案内はこちら
</LinkButton>
<div className={style.navigationsForPC}>
<LinkButton href='/join' variant='green' size='medium'>
入会案内はこちら
</LinkButton>
</div>
<div className={style.navigationsForMobile}>
<LinkButton href='/join' variant='green' size='small'>
入会案内はこちら
</LinkButton>
</div>
</div>

<nav className={style.navigations}>
Expand Down

0 comments on commit 0c5fc4a

Please sign in to comment.