0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-21 18:54:30 +01:00

Add missing !important-s to responsive text alignment classes; fixes #18300

Closes #18314 by merging a tweaked version of it.
This commit is contained in:
Deilv 2015-11-22 22:29:48 +02:00 committed by Chris Rebert
parent 4d92e2c7ec
commit 2c3a592a6e

View File

@ -57,9 +57,9 @@
@each $breakpoint in map-keys($grid-breakpoints) { @each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) { @include media-breakpoint-up($breakpoint) {
.text-#{$breakpoint}-left { text-align: left; } .text-#{$breakpoint}-left { text-align: left !important; }
.text-#{$breakpoint}-right { text-align: right; } .text-#{$breakpoint}-right { text-align: right !important; }
.text-#{$breakpoint}-center { text-align: center; } .text-#{$breakpoint}-center { text-align: center !important; }
} }
} }