Created
August 3, 2012 16:08
-
-
Save mdeltito/3249043 to your computer and use it in GitHub Desktop.
Vertical Rhythm issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* SCSS */ | |
$base-font-size: 16px; | |
$base-line-height: 24px; | |
@import "compass/typography/vertical_rhythm"; | |
@include establish-baseline; | |
#content { | |
@include adjust-font-size-to(13px); | |
} | |
/* OUTPUT */ | |
/* line 58, ../../../../../.rvm/gems/ruby-1.9.3-p194/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss */ | |
body { | |
font-size: 100%; | |
line-height: 1.5em; | |
} | |
/* line 62, ../../../../../.rvm/gems/ruby-1.9.3-p194/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss */ | |
html > body { | |
font-size: 16px; | |
} | |
#content { | |
font-size: 0.813em; | |
line-height: 1.846em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment