commit 1be5aaab2f2f24fd3a142512b0b2f47bbd73408d
Author: emma peel <emma.peel(a)riseup.net>
Date: Mon Apr 12 11:00:22 2021 +0200
remove uppercase and capitalization styling, for l10n
---
templates/layout.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/templates/layout.html b/templates/layout.html
index 76871a1..bc61f5f 100644
--- a/templates/layout.html
+++ b/templates/layout.html
@@ -12,10 +12,10 @@
<div class="row">
<div class="col-12 content-center pt-5">
<div class="row">
- <h6 class="mx-auto text-white text-uppercase">{% block section %}{{ this.section }}{% endblock %}</h6>
+ <h6 class="mx-auto text-white">{% block section %}{{ this.section }}{% endblock %}</h6>
</div>
<div class="row pb-5">
- <h2 class="mx-auto display-3 text-white text-capitalize">{% block title %}{{ this.title }}{% endblock %}</h2>
+ <h2 class="mx-auto display-3 text-white">{% block title %}{{ this.title }}{% endblock %}</h2>
</div>
</div>
</div>