Update textarea overflow to scroll (#609)
* Update textarea overflow to scroll * Update _forms.scss * Update _forms.scss
This commit is contained in:
parent
bffce041d7
commit
b2312d7f1b
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue