fix(editor): set proper line height

Currently, the `line-height` inherits from `body` where it is set to `1`. This lead to very tight leading, which makes the text inside of the editor hard to read.

Proposed solution: Set `line-height` to `1.5`.
This commit is contained in:
Oscar 2022-01-16 13:52:34 +01:00 committed by Gustav Hansen
parent 8924128465
commit c959709011

View File

@ -224,7 +224,7 @@ export const EditorStylesContainer = styled.div`
margin: 0;
white-space: pre;
word-wrap: normal;
line-height: inherit;
line-height: 1.5;
color: inherit;
/* z-index: 2; */
position: relative;