|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
efrain |
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 |
}
|