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:
parent
287bc4432c
commit
1a99e9bf1a
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue