Skip to content

Commit

Permalink
[docs] Add font antialiasing for Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Sep 4, 2016
1 parent 489fc24 commit 2e56fc3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/site/src/components/AppFrame.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const globalStyleSheet = createStyleSheet('global', (theme) => ({
color: theme.palette.text.primary,
lineHeight: '1.2',
overflowX: 'hidden',
WebkitFontSmoothing: 'antialiased',
WebkitFontSmoothing: 'antialiased', // Antialiasing.
MozOsxFontSmoothing: 'grayscale', // Antialiasing.
},
a: {
color: theme.palette.accent.A400,
Expand Down

0 comments on commit 2e56fc3

Please sign in to comment.