Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
320 B

  1. @each $breakpoint in map-keys($grid-breakpoints) {
  2. @include media-breakpoint-up($breakpoint) {
  3. $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
  4. .float#{$infix}-left { @include float-left; }
  5. .float#{$infix}-right { @include float-right; }
  6. .float#{$infix}-none { @include float-none; }
  7. }
  8. }