Skip to content

Commit

Permalink
Fix breakpoints on 404 page (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjurco authored and bbenligiray committed Mar 3, 2025
1 parent e83bc88 commit f0a7334
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/not-found/not-found.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
@include font-body-15;
}

@media (min-width: $sm) {
@media (min-width: $md) {
gap: 16px;

h1 {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/not-found/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const NotFoundPage = () => {
<p>Let’s get you back to home.</p>
</div>

<Button href="/" type="primary" className={styles.button} size="sm" sm={{ size: 'lg' }}>
<Button href="/" type="primary" className={styles.button} size="sm" md={{ size: 'lg' }}>
Staking
</Button>
</div>
Expand Down

0 comments on commit f0a7334

Please sign in to comment.