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/mixins/_breakpoints.scss')
-rw-r--r--assets/stylesheets/bootstrap/mixins/_breakpoints.scss8
1 files changed, 6 insertions, 2 deletions
diff --git a/assets/stylesheets/bootstrap/mixins/_breakpoints.scss b/assets/stylesheets/bootstrap/mixins/_breakpoints.scss
index 8d7378d..082c5f9 100644
--- a/assets/stylesheets/bootstrap/mixins/_breakpoints.scss
+++ b/assets/stylesheets/bootstrap/mixins/_breakpoints.scss
@@ -98,8 +98,12 @@
@content;
}
} @else if $max == null {
- @include media-breakpoint-up($name)
+ @include media-breakpoint-up($name) {
+ @content;
+ }
} @else if $min == null {
- @include media-breakpoint-down($name)
+ @include media-breakpoint-down($name) {
+ @content;
+ }
}
}