Browse Source

Fix overflowing headers on small screens (#1830)

main
Nelson Reitz 6 years ago
committed by Dan Abramov
parent
commit
1fe2e0ae29
  1. 5
      src/theme.js

5
src/theme.js

@ -89,6 +89,11 @@ const fonts = {
lineHeight: '65px',
fontWeight: 700,
[media.lessThan('small')]: {
overflowWrap: 'break-word',
wordBreak: 'break-word',
},
[media.lessThan('medium')]: {
fontSize: 40,
lineHeight: '45px',

Loading…
Cancel
Save