mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-10 10:03:21 -04:00
Replace column-one-third with govuk-grid-column-one-third
Also replaces `column-third`, with `govuk-grid-column-one-third`, since this appears to be an alias of `column-one-third`.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
<div class="ajax-block-container">
|
||||
<div class="govuk-grid-row">
|
||||
<div id="total-email" class="column-third">
|
||||
<div id="total-email" class="govuk-grid-column-one-third">
|
||||
{{ big_number_with_status(
|
||||
statistics['email']['requested'],
|
||||
message_count_label(statistics['email']['requested'], 'email', suffix='sent'),
|
||||
@@ -15,7 +15,7 @@
|
||||
smaller=True,
|
||||
) }}
|
||||
</div>
|
||||
<div id="total-sms" class="column-third">
|
||||
<div id="total-sms" class="govuk-grid-column-one-third">
|
||||
{{ big_number_with_status(
|
||||
statistics['sms']['requested'],
|
||||
message_count_label(statistics['sms']['requested'], 'sms', suffix='sent'),
|
||||
@@ -27,7 +27,7 @@
|
||||
smaller=True,
|
||||
) }}
|
||||
</div>
|
||||
<div id="total-letters" class="column-third">
|
||||
<div id="total-letters" class="govuk-grid-column-one-third">
|
||||
{{ big_number_with_status(
|
||||
statistics['letter']['requested'],
|
||||
message_count_label(statistics['letter']['requested'], 'letter', suffix='sent'),
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
{% from "components/big-number.html" import big_number %}
|
||||
|
||||
<div class='govuk-grid-row ajax-block-container'>
|
||||
<div class='column-third'>
|
||||
<div class='govuk-grid-column-one-third'>
|
||||
<div class="keyline-block">
|
||||
{{ big_number("Unlimited", 'free email allowance', smaller=True) }}
|
||||
</div>
|
||||
</div>
|
||||
<div class='column-third'>
|
||||
<div class='govuk-grid-column-one-third'>
|
||||
<div class="keyline-block">
|
||||
{% if sms_chargeable %}
|
||||
{{ big_number(
|
||||
@@ -20,7 +20,7 @@
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div class='column-third'>
|
||||
<div class='govuk-grid-column-one-third'>
|
||||
<div class="keyline-block">
|
||||
{{ big_number(
|
||||
letter_cost,
|
||||
|
||||
Reference in New Issue
Block a user