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:
Katie Smith
2020-02-19 12:29:28 +00:00
parent 076d99c9dc
commit 07bcb4220e
16 changed files with 41 additions and 39 deletions

View File

@@ -1,7 +1,7 @@
{% from "components/big-number.html" import big_number_with_status %}
{% from "components/message-count-label.html" import message_count_label %}
<div class="govuk-grid-row bottom-gutter">
<div class="column-third">
<div class="govuk-grid-column-one-third">
{{ big_number_with_status(
global_stats.email.delivered + global_stats.email.failed,
message_count_label(global_stats.email.delivered, 'email'),
@@ -11,7 +11,7 @@
smaller=True
) }}
</div>
<div class="column-third">
<div class="govuk-grid-column-one-third">
{{ big_number_with_status(
global_stats.sms.delivered + global_stats.sms.failed,
message_count_label(global_stats.sms.delivered, 'sms'),
@@ -21,7 +21,7 @@
smaller=True
) }}
</div>
<div class="column-third">
<div class="govuk-grid-column-one-third">
{{ big_number_with_status(
global_stats.letter.requested,
message_count_label(global_stats.letter.requested, 'letter'),