(Hotfix) Don't always show scrollbars on Editor (#373)
Bad CSS made it so that scrollbars always showed up in descriptions and the editor. I didn't see it because I am usually working on a Mac with display scrollbars off. Anyway, it's fixed now.
This commit is contained in:
parent
9e6c9a2108
commit
3ef77cec0c
1 changed files with 2 additions and 1 deletions
|
|
@ -24,7 +24,8 @@
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
font-size: $font-regular;
|
font-size: $font-regular;
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
overflow: scroll;
|
overflow-y: auto;
|
||||||
|
overflow-x: hidden;
|
||||||
padding: $unit * 1.5 $unit-2x;
|
padding: $unit * 1.5 $unit-2x;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue