Make letter contact textbox half-wide

This approximates the width of the contact block area in the letter
template itself.
This commit is contained in:
Chris Hill-Scott
2017-03-03 09:59:05 +00:00
parent 5c3588445e
commit db7aa3aa75

View File

@@ -11,17 +11,19 @@
<h1 class="heading-large"> <h1 class="heading-large">
Letter contact details Letter contact details
</h1> </h1>
<form method="post"> <div class="grid-row">
{{ textbox( <form method="post" class="column-half">
form.letter_contact_block, {{ textbox(
width='1-1', form.letter_contact_block,
rows=10 width='1-1',
) }} rows=10
{{ page_footer( ) }}
'Save', {{ page_footer(
back_link=url_for('.service_settings', service_id=current_service.id), 'Save',
back_link_text='Back to settings' back_link=url_for('.service_settings', service_id=current_service.id),
) }} back_link_text='Back to settings'
</form> ) }}
</form>
</div>
{% endblock %} {% endblock %}