From: Deilv Date: Sun, 22 Nov 2015 20:29:48 +0000 (+0200) Subject: Add missing !important-s to responsive text alignment classes; fixes #18300 X-Git-Tag: v4.0.0-alpha.2~112 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c3a592a6edb6596ca05c240abf7b053f6333c02;p=thirdparty%2Fbootstrap.git Add missing !important-s to responsive text alignment classes; fixes #18300 Closes #18314 by merging a tweaked version of it. --- diff --git a/scss/_utilities.scss b/scss/_utilities.scss index 521d2f9874..3a042bf39a 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -57,9 +57,9 @@ @each $breakpoint in map-keys($grid-breakpoints) { @include media-breakpoint-up($breakpoint) { - .text-#{$breakpoint}-left { text-align: left; } - .text-#{$breakpoint}-right { text-align: right; } - .text-#{$breakpoint}-center { text-align: center; } + .text-#{$breakpoint}-left { text-align: left !important; } + .text-#{$breakpoint}-right { text-align: right !important; } + .text-#{$breakpoint}-center { text-align: center !important; } } }