Update textarea overflow to scroll (#609)

* Update textarea overflow to scroll

* Update _forms.scss

* Update _forms.scss
This commit is contained in:
Marek Ľach 2019-06-02 21:35:09 +01:00 committed by Baptiste Gelez
parent bffce041d7
commit b2312d7f1b
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ form input[type="submit"] {
textarea { textarea {
resize: vertical; resize: vertical;
overflow-y: scroll;
font-family: $lora; font-family: $lora;
font-size: 1.1em; font-size: 1.1em;
line-height: 1.5; line-height: 1.5;
@ -127,7 +127,7 @@ form.new-post {
} }
textarea { textarea {
min-height: 20em; min-height: 20em;
overflow-y: hidden; overflow-y: scroll;
resize: none; resize: none;
-webkit-appearance: textarea; -webkit-appearance: textarea;
} }