Skip to content

Commit 244c90f

Browse files
committed
fix(stylereset): set default line-height to 1.5
1 parent df42227 commit 244c90f

File tree

5 files changed

+1
-9
lines changed

5 files changed

+1
-9
lines changed

src/components/NumberField/NumberField.stories.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ const Wrapper = styled.div`
1717
& > * {
1818
margin-bottom: 1rem;
1919
}
20-
& > p {
21-
line-height: 1.3l;
22-
}
2320
}
2421
`;
2522

src/components/Radio/Radio.stories.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ const Wrapper = styled.div`
2121
width: 300px;
2222
& > p {
2323
margin-bottom: 2rem;
24-
line-height: 1.3;
2524
}
2625
}
2726
`;

src/components/Select/Select.stories.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ const Wrapper = styled.div`
3232
padding: 1rem;
3333
background: ${({ theme }) => theme.canvas};
3434
& > p {
35-
line-height: 1.3;
3635
margin-bottom: 2rem;
3736
}
3837
}

src/components/TextField/TextField.stories.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ const Wrapper = styled.div`
1414
padding: 1rem;
1515
width: 400px;
1616
background: ${({ theme }) => theme.canvas};
17-
& > p {
18-
line-height: 1.3;
19-
}
2017
}
2118
`;
2219

src/components/common/styleReset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ section {
102102
display: block;
103103
}
104104
body {
105-
line-height: 1;
105+
line-height: 1.5;
106106
}
107107
ol,
108108
ul {

0 commit comments

Comments
 (0)