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

github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss')
-rw-r--r--assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss b/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss
index f3dd2cf3..146d9961 100644
--- a/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss
+++ b/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss
@@ -5,6 +5,6 @@
// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
@mixin navbar-vertical-align($element-height) {
- margin-top: (math.div($navbar-height - $element-height), 2);
- margin-bottom: (math.div($navbar-height - $element-height), 2);
+ margin-top: math.div(($navbar-height - $element-height), 2);
+ margin-bottom: math.div(($navbar-height - $element-height), 2);
}