Skip to content
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

Fix inline styling of bold text on a results page #6909

Merged
merged 1 commit into from
Oct 16, 2024
Merged
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<% text_for :body do %>
<% if calculator.number_of_benefits > 0 %>
<p class="govuk-body">Based on your answers, you may be eligible for the following <span id="ga4-ecommerce-result-count" style="font-weight: bold"><%= calculator.number_of_benefits %> things</span>.</p>
<p class="govuk-body">Based on your answers, you may be eligible for the following <span id="ga4-ecommerce-result-count" class="govuk-!-font-weight-bold"><%= calculator.number_of_benefits %> things</span>.</p>
<% else %>
<p class="govuk-body">Based on your answers, you may not be eligible for any benefits.</p>
<% end %>
Expand Down
Loading