diff options
| author | Chris Rebert <[email protected]> | 2015-10-23 12:26:31 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-10-23 12:26:31 -0700 |
| commit | 62aecae328781b1944b7af8a96a55d4d5cc9a930 (patch) | |
| tree | e770e00eed1e28106d1b1a03e25b35e969405510 | |
| parent | 7e88a6a998c34caaa9acb8065a0316aec6ee688a (diff) | |
| download | bootstrap-62aecae328781b1944b7af8a96a55d4d5cc9a930.tar.xz bootstrap-62aecae328781b1944b7af8a96a55d4d5cc9a930.zip | |
Add !important to text transform utility classes
| -rw-r--r-- | scss/_utilities.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_utilities.scss b/scss/_utilities.scss index d5bd4dfe0..580d0bc54 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 |
