Make right-aligned big numbers left aligned

This commit is contained in:
Chris Hill-Scott
2016-05-05 11:01:34 +01:00
parent d93eb4f30e
commit b5d5689d5c
4 changed files with 13 additions and 14 deletions
+3 -3
View File
@@ -47,7 +47,7 @@
<div class='grid-row'>
<div class='column-half'>
<div class="keyline-block">
{{ big_number("Unlimited", 'free email allowance', right_aligned=True) }}
{{ big_number("Unlimited", 'free email allowance', smaller=True) }}
</div>
</div>
<div class='column-half'>
@@ -57,10 +57,10 @@
(sms_chargeable * sms_rate),
'spent on text messages',
currency="£",
right_aligned=True
smaller=True
) }}
{% else %}
{{ big_number(sms_allowance_remaining, 'free text messages left', right_aligned=True) }}
{{ big_number(sms_allowance_remaining, 'free text messages left', smaller=True) }}
{% endif %}
</div>
</div>