1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-28 15:50:01 +02:00

Merge pull request #18340 from twbs/responsive-pulls

Add responsive float classes
This commit is contained in:
Chris Rebert
2015-11-29 21:47:49 -08:00
14 changed files with 53 additions and 42 deletions

View File

@@ -10,12 +10,18 @@
@include center-block();
}
.pull-right {
@include pull-right();
}
.pull-left {
@include pull-left();
@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
.pull-#{$breakpoint}-left {
@include pull-left();
}
.pull-#{$breakpoint}-right {
@include pull-right();
}
.pull-#{$breakpoint}-none {
float: none !important;
}
}
}