Fix sub-header capitalization

Seems like someone edited the .css but the fix was removing the class from the header. So, fixed the shared style file and set the proper class to the header element.
This commit is contained in:
Antonela 2020-04-13 13:31:01 -03:00
parent e444c3eef0
commit d08dee25e9
2 changed files with 4 additions and 4 deletions

View File

@ -24,9 +24,9 @@
// Transformation
.text-lowercase { text-transform: none !important; }
.text-uppercase { text-transform: none !important; }
.text-capitalize { text-transform: none !important; }
.text-lowercase { text-transform: lowercase;}
.text-uppercase { text-transform: uppercase;}
.text-capitalize { text-transform: capitalize;}
// Weight and italics

View File

@ -12,7 +12,7 @@
<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 text-capitalize">{% 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>