Closed toddmilliken closed 7 years ago
$indent-amount values always resolve to px.
No, $indent-amount
is set to 40px
by default. But you can set it to any value with any unit.
If you set this before running @include normalize();
, it will output 2rem instead of 40px.
$indent-amount: 2rem;
$base-unit
only controls the font size/line heights, not margins or padding.
$indent-amount
values always resolve topx
, even when changing the default variable for$base-unit
to berem
.My main sass file is as follows:
One possible solution is modifying /sass/normalize/_normalize-mixin.scss to wrap each
$indent-amount
withnormalize-rhythm($indent-amount)
so it gets converted to the proper units.