Skip to content

css fix #4456

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 22, 2019
Merged

css fix #4456

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/assets/v2/css/grants/fund.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@

#gitcoin-grant-section .badge {
padding: 16px 24px;
cursor: pointer;
}

#gitcoin-grant-section .badge-active {
Expand Down
14 changes: 9 additions & 5 deletions app/grants/templates/grants/fund.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ <h2 class="font-title-lg my-4">{% trans "Fund Grant" %}</h2>
<select class='js-select2' name='denomination' id='js-token'> </select>
</div>
{% else %}
{{ grant.token_symbol }}
<p class="my-2">{{ grant.token_symbol }}</p>
{% endif %}
</div>
</div>
Expand Down Expand Up @@ -156,7 +156,9 @@ <h2 class="font-subheader font-weight-semibold">{% trans "Support Gitcoin" %}</h
<p class="font-title mb-0 text-center">
<i class="fas fa-equals font-caption mr-2"></i>
<span class="summary-gitcoin-amount">5</span>
<span class="summary-token">-</span>
<span class="summary-token">
{% if grant_has_no_token %} - {% else %} {{ grant.token_symbol }} {% endif %}
</span>
</p>
<p class="mb-0 mx-0 font-caption text-center">
every <span class="font-caption summary-period">-</span>
Expand Down Expand Up @@ -186,8 +188,8 @@ <h5 class="form__label">{% trans "Gas Settings" %}</h5>
<i class="fas fa-circle mr-2"></i>
{% trans "You are contributing" %}
<span id="summary-amount" class="font-weight-bold">-</span>
<span class="summary-token" class="font-weight-bold">
{{ grant.token_symbol }}
<span class="summary-token font-weight-bold">
{{ grant.token_symbol }}
</span>
{% trans "to this grant every" %}
<span class="summary-period font-weight-bold">-</span>
Expand All @@ -198,7 +200,9 @@ <h5 class="form__label">{% trans "Gas Settings" %}</h5>
<i class="fas fa-circle mr-2"></i>
{% trans "You are additionally contributing" %}
<span class="summary-gitcoin-amount font-weight-bold">-</span>
<span class="summary-token font-weight-bold"></span>
<span class="summary-token font-weight-bold">
{% if not grant_has_no_token %} {{ grant.token_symbol }} {% endif %}
</span>
{% trans "to the gitcoin grant every" %}
<span class="summary-period font-weight-bold">-</span>
<span class="summary-frequency-unit font-weight-bold">-</span>.
Expand Down