Layout von Websiten mit Bootstrap und Foundation
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.

_float.scss 376B

1234567891011
  1. // stylelint-disable declaration-no-important
  2. @each $breakpoint in map-keys($grid-breakpoints) {
  3. @include media-breakpoint-up($breakpoint) {
  4. $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
  5. .float#{$infix}-left { float: left !important; }
  6. .float#{$infix}-right { float: right !important; }
  7. .float#{$infix}-none { float: none !important; }
  8. }
  9. }