Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets/bootstrap/utilities/_float.scss')
-rw-r--r--assets/stylesheets/bootstrap/utilities/_float.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/assets/stylesheets/bootstrap/utilities/_float.scss b/assets/stylesheets/bootstrap/utilities/_float.scss
new file mode 100644
index 0000000..eea34bf
--- /dev/null
+++ b/assets/stylesheets/bootstrap/utilities/_float.scss
@@ -0,0 +1,13 @@
+@each $breakpoint in map-keys($grid-breakpoints) {
+ @include media-breakpoint-up($breakpoint) {
+ .float-#{$breakpoint}-left {
+ @include float-left();
+ }
+ .float-#{$breakpoint}-right {
+ @include float-right();
+ }
+ .float-#{$breakpoint}-none {
+ float: none !important;
+ }
+ }
+}