diff --git a/styles/core/_util.scss b/styles/core/_util.scss index cbcf8e8a..6237bc56 100644 --- a/styles/core/_util.scss +++ b/styles/core/_util.scss @@ -76,3 +76,7 @@ .user-permission { font-weight: $font-normal; } + +p { + max-width: 80ch; +} diff --git a/templates/components/alert.html b/templates/components/alert.html index 5691d1a8..8406a3da 100644 --- a/templates/components/alert.html +++ b/templates/components/alert.html @@ -31,7 +31,9 @@ {% endif %} {% if message %} -
{{ message | safe }}
+

+ {{ message | safe }} +

{% endif %} {% if caller %} diff --git a/templates/components/checkbox_input.html b/templates/components/checkbox_input.html index 157c0409..e573c4cd 100644 --- a/templates/components/checkbox_input.html +++ b/templates/components/checkbox_input.html @@ -18,7 +18,9 @@ {{ label | safe }} {% if field.description %} - {{ field.description | safe }} +

+ {{ field.description | safe }} +

{% endif %} diff --git a/templates/components/date_picker.html b/templates/components/date_picker.html index 2774aec5..16588800 100644 --- a/templates/components/date_picker.html +++ b/templates/components/date_picker.html @@ -27,7 +27,9 @@ {% if description %} - {{ description | safe }} +

+ {{ description | safe }} +

{% endif %} diff --git a/templates/components/multi_checkbox_input.html b/templates/components/multi_checkbox_input.html index 90184a15..41fb23c3 100644 --- a/templates/components/multi_checkbox_input.html +++ b/templates/components/multi_checkbox_input.html @@ -31,7 +31,9 @@ {% if field.description %} - {{ field.description | safe }} +

+ {{ field.description | safe }} +

{{ validation_icons }} {% endif %} diff --git a/templates/components/options_input.html b/templates/components/options_input.html index 38c964f5..f5b98697 100644 --- a/templates/components/options_input.html +++ b/templates/components/options_input.html @@ -32,7 +32,9 @@ {% if field.description %} - {{ field.description | safe }} +

+ {{ field.description | safe }} +

{% endif %} {% if show_validation %} diff --git a/templates/components/selector.html b/templates/components/selector.html index e6c9318c..1b0181a3 100644 --- a/templates/components/selector.html +++ b/templates/components/selector.html @@ -16,7 +16,9 @@
{{ field.label | striptags }}
{% if field.description %} - {{ field.description | safe }} +

+ {{ field.description | safe }} +

{% endif %} {{ Icon('alert',classes="icon-validation") }} diff --git a/templates/components/text_input.html b/templates/components/text_input.html index 1b7e5aa7..9487abc2 100644 --- a/templates/components/text_input.html +++ b/templates/components/text_input.html @@ -46,7 +46,9 @@ {% if field.description %} - {{ description | safe }} +

+ {{ description | safe }} +

{% endif %} {% if not disabled %} diff --git a/templates/components/totals_box.html b/templates/components/totals_box.html index 2766a447..5ad39166 100644 --- a/templates/components/totals_box.html +++ b/templates/components/totals_box.html @@ -8,13 +8,13 @@
{{ 'components.totals_box.obligated_funds' | translate }}
{{ obligated_funds | dollars }}
-
{{ 'components.totals_box.obligated_text' | translate }}
+

{{ 'components.totals_box.obligated_text' | translate }}


{{ 'components.totals_box.total_amount' | translate }}
{{ contract_amount | dollars }}
-
{{ 'components.totals_box.total_text' | translate }}
+

{{ 'components.totals_box.total_text' | translate }}

diff --git a/templates/components/upload_input.html b/templates/components/upload_input.html index c2cc176d..41234b00 100644 --- a/templates/components/upload_input.html +++ b/templates/components/upload_input.html @@ -23,7 +23,9 @@ {% if show_label %} {{ field.label }} {% endif %} - {{ field.description }} +

+ {{ field.description }} +

diff --git a/templates/task_orders/form_header.html b/templates/task_orders/form_header.html index a5081b96..749a5d30 100644 --- a/templates/task_orders/form_header.html +++ b/templates/task_orders/form_header.html @@ -13,7 +13,9 @@
- {{ description }} +

+ {{ description }} +

{% endmacro %}