From f2bb7fe8d5cd3fedd13d49804c1afe02534a6406 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Tue, 5 Jan 2016 16:30:42 -0500 Subject: [PATCH] feat(typography): added text align and transformation attributes references #279 --- ionic/components/app/typography.scss | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) 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; +}