_align.scss
6 years ago
_background.scss
6 years ago
_borders.scss
6 years ago
_clearfix.scss
6 years ago
_display.scss
6 years ago
_embed.scss
6 years ago
_flex.scss
6 years ago
_float.scss
6 years ago
_overflow.scss
6 years ago
_position.scss
6 years ago
_screenreaders.scss
6 years ago
_shadows.scss
6 years ago
_sizing.scss
6 years ago
_spacing.scss
6 years ago
_stretched-link.scss
6 years ago
_text.scss
6 years ago
_visibility.scss
6 years ago
_float.scss
12 lines
| 1 | // stylelint-disable declaration-no-important |
| 2 | |
| 3 | @each $breakpoint in map-keys($grid-breakpoints) { |
| 4 | @include media-breakpoint-up($breakpoint) { |
| 5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); |
| 6 | |
| 7 | .float#{$infix}-left { float: left !important; } |
| 8 | .float#{$infix}-right { float: right !important; } |
| 9 | .float#{$infix}-none { float: none !important; } |
| 10 | } |
| 11 | } |
| 12 |