Skip to content

Instantly share code, notes, and snippets.

@jimmieego
Created October 19, 2018 23:53
Show Gist options
  • Select an option

  • Save jimmieego/413a573cbb6305ce0dbc542a3e9a39ac to your computer and use it in GitHub Desktop.

Select an option

Save jimmieego/413a573cbb6305ce0dbc542a3e9a39ac to your computer and use it in GitHub Desktop.
Vertical rhythm with Sass
$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