aboutsummaryrefslogtreecommitdiff
path: root/scss/utilities/_float.scss
diff options
context:
space:
mode:
authorMartijn Cuppens <[email protected]>2019-05-23 11:56:03 +0200
committerGitHub <[email protected]>2019-05-23 11:56:03 +0200
commit769c8d824600fbf521e3976cc4a3c6152ed4e8ce (patch)
tree270b5b5a1590e774f02a0baad9b5e66a1922b64e /scss/utilities/_float.scss
parenta4a04cd9ec741050390746f8056cc79a9c04c8df (diff)
downloadbootstrap-769c8d824600fbf521e3976cc4a3c6152ed4e8ce.tar.xz
bootstrap-769c8d824600fbf521e3976cc4a3c6152ed4e8ce.zip
Helpers & utilities split (#28445)
Diffstat (limited to 'scss/utilities/_float.scss')
-rw-r--r--scss/utilities/_float.scss11
1 files changed, 0 insertions, 11 deletions
diff --git a/scss/utilities/_float.scss b/scss/utilities/_float.scss
deleted file mode 100644
index 54250844f..000000000
--- a/scss/utilities/_float.scss
+++ /dev/null
@@ -1,11 +0,0 @@
-// 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; }
- }
-}