Hide scrollbars in the editor textarea (#3897)

* Hide scrollbars

There is no need for scrollbars in the textarea given the scrollbar at the edge of the browser and that `preact-textarea-autosize` used for the textarea already increases the height of the textarea when needed. Getting rid of scrollbars would solve #2939 and #3330

* add documentation
This commit is contained in:
Almenon 2019-09-05 15:04:24 -07:00 committed by Ben Halpern
parent 287bc4432c
commit 1a99e9bf1a

View file

@ -362,7 +362,9 @@
resize: none;
padding: 20px 6px;
font-family: $monospace;
// overflow: initial;
// scrollbars not needed because the preact-textarea-autosize package
// automatically resizes the article form
overflow: hidden;
background: white;
background: var(--theme-container-background, white);
color: $black;