diff --git a/styles/sections/_task_order.scss b/styles/sections/_task_order.scss index e124cdae..85502a11 100644 --- a/styles/sections/_task_order.scss +++ b/styles/sections/_task_order.scss @@ -31,6 +31,13 @@ table { margin-top: 1rem; + table-layout: fixed; + + td { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } } .col { @@ -46,6 +53,10 @@ margin-top: $gap * 2; } + .task-order__details { + max-width: 65%; + } + .totals-box { padding: $gap * 4; padding-top: $gap * 2; diff --git a/templates/portfolios/task_orders/review.html b/templates/portfolios/task_orders/review.html index 478fbaed..8c5f35df 100644 --- a/templates/portfolios/task_orders/review.html +++ b/templates/portfolios/task_orders/review.html @@ -39,7 +39,7 @@ {{ "task_orders.review.check_paragraph" | translate }}
{{ "task_orders.review.clins.amount" | translate }} | @@ -80,7 +80,9 @@{{ clin.end_date | formattedDate }} |
{% for loa in clin.loas %}
- {{ loa }}
+
+ {{ loa }}
+
{% endfor %} |
---|