diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-04-22 12:56:33 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-04-22 12:56:33 +0200 |
commit | f930ffa4eb2a65a86aa0283a1b2957ea77c70e86 (patch) | |
tree | bd262b0b7ef68fd16586eb3153f154c3db4c84c0 | |
parent | ad924845b95ed4c354d869e10df008d64e445edb (diff) |
Fix explicitly set $baseLineHeight (not rely on compass default value).
-rw-r--r-- | partials/_base-compass.scss | 1 | ||||
-rw-r--r-- | partials/_base.scss | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/partials/_base-compass.scss b/partials/_base-compass.scss index 24cb2e6..c6c4b79 100644 --- a/partials/_base-compass.scss +++ b/partials/_base-compass.scss @@ -2,3 +2,4 @@ // // No styleguide reference. $base-font-size: $baseFontSize; +$base-line-height: $baseLineHeight; diff --git a/partials/_base.scss b/partials/_base.scss index ff75a30..1868216 100644 --- a/partials/_base.scss +++ b/partials/_base.scss @@ -3,6 +3,7 @@ // No styleguide reference. // Follow W3C recommendation: http://www.w3.org/QA/Tips/font-size $baseFontSize: 16px; +$baseLineHeight: 24px; $headerFontSize: 24px; |