set "resize: vertical" as default for textarea

This commit is contained in:
Ivan 2016-01-24 10:53:19 +03:00
parent f7c03514cb
commit b631b4c0e5
2 changed files with 8 additions and 0 deletions

View file

@ -20,6 +20,10 @@ textarea {
}
// scss-lint:enable QualifyingElement
textarea {
resize: vertical;
}
// Forms described here are only used on the public pages at the moment
.block-form {
margin: 20px auto;

View file

@ -32,6 +32,10 @@ body {
padding: 0;
}
textarea {
resize: vertical;
}
h3 { margin-top: 0; }
.clear { clear: both; }
#main { padding: 56px 10px 0 10px; }