Created
October 19, 2018 23:53
-
-
Save jimmieego/413a573cbb6305ce0dbc542a3e9a39ac to your computer and use it in GitHub Desktop.
Vertical rhythm with Sass
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
| $base-font-size: 112.5; // Is used as % | |
| $line-height: 1.5; // = 27px | |
| $base: 16 * ($base-font-size / 100); | |
| $leading: $base * $line-height; | |
| @mixin margin-bottom($number){ | |
| margin-bottom: #{$number * $leading + 'px'}; | |
| margin-bottom: #{$number * $line-height + 'rem'}; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment