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

github.com/JohnAlbin/normalize-scss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorJohnAlbin <virtually.johnalbin@gmail.com>2015-11-04 10:42:41 +0300
committerJohnAlbin <virtually.johnalbin@gmail.com>2015-11-04 10:53:27 +0300
commit4b548f13c75d475e58ede282316eb2c8d689ec92 (patch)
tree095d748daf6126ebcf58d2977bb1445de26a36bd /sass
parent41cbf0fc64cd3793fec72b42554ed131d688a6ee (diff)
Fix adjust-font-size-to() fallback to work with libSass.
Diffstat (limited to 'sass')
-rw-r--r--sass/_normalize.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/sass/_normalize.scss b/sass/_normalize.scss
index db4721d..7be652c 100644
--- a/sass/_normalize.scss
+++ b/sass/_normalize.scss
@@ -181,7 +181,7 @@ h1 {
@include adjust-font-size-to( $h1-font-size );
}
@else {
- font-size: if($rhythm-unit == "px", $h1-font-size, ($h1-font-size / $base-font-size)#{$rhythm-unit});
+ font-size: if($rhythm-unit == "px", $h1-font-size, #{unquote(inspect($h1-font-size / $base-font-size) + $rhythm-unit)});
}
/* Set 1 unit of vertical rhythm on the top and bottom margins. */