(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:
Justin Edmund 2023-08-26 16:31:41 -07:00 committed by GitHub
parent 9e6c9a2108
commit 3ef77cec0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,8 @@
flex-grow: 1;
font-size: $font-regular;
line-height: 1.4;
overflow: scroll;
overflow-y: auto;
overflow-x: hidden;
padding: $unit * 1.5 $unit-2x;
white-space: pre-wrap;
width: 100%;