Skip to content

Commit

Permalink
fix(stylereset): set default line-height to 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbien committed May 19, 2020
1 parent df42227 commit 244c90f
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 9 deletions.
3 changes: 0 additions & 3 deletions src/components/NumberField/NumberField.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ const Wrapper = styled.div`
& > * {
margin-bottom: 1rem;
}
& > p {
line-height: 1.3l;
}
}
`;

Expand Down
1 change: 0 additions & 1 deletion src/components/Radio/Radio.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const Wrapper = styled.div`
width: 300px;
& > p {
margin-bottom: 2rem;
line-height: 1.3;
}
}
`;
Expand Down
1 change: 0 additions & 1 deletion src/components/Select/Select.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ const Wrapper = styled.div`
padding: 1rem;
background: ${({ theme }) => theme.canvas};
& > p {
line-height: 1.3;
margin-bottom: 2rem;
}
}
Expand Down
3 changes: 0 additions & 3 deletions src/components/TextField/TextField.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ const Wrapper = styled.div`
padding: 1rem;
width: 400px;
background: ${({ theme }) => theme.canvas};
& > p {
line-height: 1.3;
}
}
`;

Expand Down
2 changes: 1 addition & 1 deletion src/components/common/styleReset.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ section {
display: block;
}
body {
line-height: 1;
line-height: 1.5;
}
ol,
ul {
Expand Down

0 comments on commit 244c90f

Please sign in to comment.