mirror of
https://github.com/torproject/lego.git
synced 2025-02-21 10:41:33 +00:00
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:
parent
e444c3eef0
commit
d08dee25e9
@ -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
|
||||
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user