feat(typography): added text align and transformation attributes

references #279
This commit is contained in:
Brandy Carney
2016-01-05 16:30:42 -05:00
parent f05254ea45
commit f2bb7fe8d5

View File

@@ -97,3 +97,41 @@ sup {
sub {
bottom: -0.25em;
}
// Text Alignment
// --------------------------------------------------
[text-left] {
text-align: left;
}
[text-center] {
text-align: center;
}
[text-right] {
text-align: right;
}
[text-justify] {
text-align: justify;
}
[text-nowrap] {
white-space: nowrap;
}
// Text Transformation
// --------------------------------------------------
[text-uppercase] {
text-transform: uppercase;
}
[text-lowercase] {
text-transform: lowercase;
}
[text-capitalize] {
text-transform: capitalize;
}