diff options
Diffstat (limited to 'themes/hugo-whisper-theme/assets/scss/bootstrap/utilities/_float.scss')
-rwxr-xr-x | themes/hugo-whisper-theme/assets/scss/bootstrap/utilities/_float.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/themes/hugo-whisper-theme/assets/scss/bootstrap/utilities/_float.scss b/themes/hugo-whisper-theme/assets/scss/bootstrap/utilities/_float.scss new file mode 100755 index 0000000..5425084 --- /dev/null +++ b/themes/hugo-whisper-theme/assets/scss/bootstrap/utilities/_float.scss @@ -0,0 +1,11 @@ +// stylelint-disable declaration-no-important + +@each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + .float#{$infix}-left { float: left !important; } + .float#{$infix}-right { float: right !important; } + .float#{$infix}-none { float: none !important; } + } +} |