diff --git a/styles/sections/_task_order.scss b/styles/sections/_task_order.scss index 69aa992f..f257f764 100644 --- a/styles/sections/_task_order.scss +++ b/styles/sections/_task_order.scss @@ -50,6 +50,13 @@ } } + &__header { + .h2, + p { + margin-bottom: $gap * 0.5; + } + } + .col { flex-grow: 1; } diff --git a/templates/task_orders/form_header.html b/templates/task_orders/form_header.html index 749a5d30..79821bf7 100644 --- a/templates/task_orders/form_header.html +++ b/templates/task_orders/form_header.html @@ -1,21 +1,15 @@ {% macro TOFormStepHeader(title, description, to_number=None) %} -
-
-
-
- {{ title }} -
-
-
- {% if to_number %} - Task Order Number: {{ to_number }} - {% endif %} -
+
+
+ {{ title }}
-
+ {% if to_number %}

- {{ description }} + Task Order Number: {{ to_number }}

-
+ {% endif %} +

+ {{ description }} +

{% endmacro %}