Skip to content

Commit

Permalink
Use 2 instead of 10 on line height example
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Moore committed Jan 16, 2020
1 parent fd8d0f9 commit b872a1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/src/pages/system/typography/LineHeight.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export default function LineHeight() {
<Box lineHeight="normal" m={1}>
Normal height.
</Box>
<Box lineHeight={10} m={1}>
line-height: 10
<Box lineHeight={2} m={1}>
line-height: 2
</Box>
</Typography>
);
Expand Down
4 changes: 2 additions & 2 deletions docs/src/pages/system/typography/LineHeight.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export default function LineHeight() {
<Box lineHeight="normal" m={1}>
Normal height.
</Box>
<Box lineHeight={10} m={1}>
line-height: 10
<Box lineHeight={2} m={1}>
line-height: 2
</Box>
</Typography>
);
Expand Down

0 comments on commit b872a1a

Please sign in to comment.