Skip to content

Commit

Permalink
Fix default error style overrides (#39169)
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Jul 29, 2022
1 parent 860c028 commit 9fed522
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/next/pages/_error.tsx
Expand Up @@ -119,16 +119,17 @@ const styles: { [k: string]: React.CSSProperties } = {
display: 'inline-block',
margin: 0,
marginRight: '20px',
padding: '10px 23px 10px 0',
padding: '0 23px 0 0',
fontSize: '24px',
fontWeight: 500,
verticalAlign: 'top',
lineHeight: '49px',
},

h2: {
fontSize: '14px',
fontWeight: 'normal',
lineHeight: 'inherit',
lineHeight: '49px',
margin: 0,
padding: 0,
},
Expand Down

0 comments on commit 9fed522

Please sign in to comment.