mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-14 05:29:43 +02:00
fix for font saturation
This commit is contained in:
parent
3495101e9b
commit
378a6e4452
1 changed files with 18 additions and 15 deletions
|
@ -7,19 +7,15 @@
|
||||||
{% if heading_level %}
|
{% if heading_level %}
|
||||||
<{{ heading_level }}
|
<{{ heading_level }}
|
||||||
{% else %}
|
{% else %}
|
||||||
<h3
|
<h4
|
||||||
{% endif %}
|
{% endif %}
|
||||||
class="summary-item__title
|
class="font-sans-md
|
||||||
font-sans-md
|
text-primary-dark text-semibold">
|
||||||
text-primary-dark text-semibold
|
|
||||||
margin-top-0 margin-bottom-05
|
|
||||||
padding-right-1"
|
|
||||||
>
|
|
||||||
{{ title }}
|
{{ title }}
|
||||||
{% if heading_level %}
|
{% if heading_level %}
|
||||||
</{{ heading_level }}>
|
</{{ heading_level }}>
|
||||||
{% else %}
|
{% else %}
|
||||||
</h3>
|
</h4>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if sub_header_text %}
|
{% if sub_header_text %}
|
||||||
<h4 class="register-form-review-header">{{ sub_header_text }}</h4>
|
<h4 class="register-form-review-header">{{ sub_header_text }}</h4>
|
||||||
|
@ -32,16 +28,23 @@
|
||||||
{% include "includes/contact.html" with contact=value|first %}
|
{% include "includes/contact.html" with contact=value|first %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if value %}
|
{% if value %}
|
||||||
<dl class="usa-list usa-list--unstyled margin-top-0">
|
<ul class="usa-list usa-list--unstyled margin-top-0">
|
||||||
{% for item in value %}
|
{% for item in value %}
|
||||||
<dt>
|
<li>
|
||||||
|
|
||||||
|
<h4 class="summary-item__title
|
||||||
|
font-sans-md
|
||||||
|
text-primary-dark text-semibold
|
||||||
|
margin-bottom-05
|
||||||
|
padding-right-1">
|
||||||
Contact {{forloop.counter}}
|
Contact {{forloop.counter}}
|
||||||
</dt>
|
</h4>
|
||||||
<dd>
|
</li>
|
||||||
|
<li>
|
||||||
{% include "includes/contact.html" with contact=item %}
|
{% include "includes/contact.html" with contact=item %}
|
||||||
</dd>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</dl>
|
</ul>
|
||||||
{% elif custom_text_for_value_none %}
|
{% elif custom_text_for_value_none %}
|
||||||
<p>
|
<p>
|
||||||
{{ custom_text_for_value_none }}
|
{{ custom_text_for_value_none }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue