From 62aecae328781b1944b7af8a96a55d4d5cc9a930 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Fri, 23 Oct 2015 12:26:31 -0700 Subject: [PATCH] Add !important to text transform utility classes --- scss/_utilities.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scss/_utilities.scss b/scss/_utilities.scss index d5bd4dfe04..580d0bc546 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -70,9 +70,9 @@ // Transformation -.text-lowercase { text-transform: lowercase; } -.text-uppercase { text-transform: uppercase; } -.text-capitalize { text-transform: capitalize; } +.text-lowercase { text-transform: lowercase !important; } +.text-uppercase { text-transform: uppercase !important; } +.text-capitalize { text-transform: capitalize !important; } // Contextual colors -- 2.47.2