From b15ab4adb837e43409e5e3cf3a40a83ef4dbf62f Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sun, 8 Jan 2023 22:12:24 -0300 Subject: Initial commit --- .../assets/scss/bootstrap/utilities/_float.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 themes/hugo-whisper-theme/assets/scss/bootstrap/utilities/_float.scss (limited to 'themes/hugo-whisper-theme/assets/scss/bootstrap/utilities/_float.scss') 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; } + } +} -- cgit v1.2.3