diff --git a/ionic/components/app/typography.scss b/ionic/components/app/typography.scss index 1f13d585ec..4f5ffe3ed3 100644 --- a/ionic/components/app/typography.scss +++ b/ionic/components/app/typography.scss @@ -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; +}