Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_float.scss « utilities « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eea34bff28b1b2958da1b34c95933b87ca8cd531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@each $breakpoint in map-keys($grid-breakpoints) {
  @include media-breakpoint-up($breakpoint) {
    .float-#{$breakpoint}-left {
      @include float-left();
    }
    .float-#{$breakpoint}-right {
      @include float-right();
    }
    .float-#{$breakpoint}-none {
      float: none !important;
    }
  }
}