Refactor textarea css

This commit is contained in:
Tim Van Baak 2020-01-26 23:17:21 -08:00
parent 6f326f91bd
commit d7557784bd
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ div.citeblock a.phantom {
span.signature {
text-align: right;
}
textarea#configText {
textarea.fullwidth {
resize: vertical;
width: 100%;
box-sizing: border-box;

View File

@ -4,7 +4,7 @@
{% block main %}
<form action="" method="post" novalidate>
{{ form.hidden_tag() }}
<p>{{ form.configText.label }}<br>{{ form.configText(rows=20) }}</p>
<p>{{ form.configText.label }}<br>{{ form.configText(rows=20, class_="fullwidth") }}</p>
<p>{{ form.submit() }}</p>
</form>
{% for message in get_flashed_messages() %}