Add .text-justify

This commit is contained in:
Rémy F 2019-09-25 13:17:38 +02:00
parent 0b4d8f61ac
commit 09c97ca93c
4 changed files with 9 additions and 1 deletions

3
dist/chota.css vendored
View File

@ -871,6 +871,9 @@ details.dropdown > :last-child {
.text-right {
text-align: right;
}
.text-justify {
text-align: justify;
}
.text-uppercase {
text-transform: uppercase;
}

2
dist/chota.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -54,6 +54,7 @@
<li><code>text-center</code> - center aligns text</li>
<li><code>text-left</code> - left aligns text</li>
<li><code>text-right</code> - right aligns text</li>
<li><code>text-justify</code> - justify aligns text</li>
<li><code>text-uppercase</code> - text to uppercase</li>
<li><code>text-lowercase</code> - text to lowercase</li>
<li><code>text-capitalize</code> - capitalizes text</li>

View File

@ -96,6 +96,10 @@
text-align: right;
}
.text-justify {
text-align: justify;
}
.text-uppercase {
text-transform: uppercase;
}