Iterate on the doc changes for the reset-baseline mixin

This commit is contained in:
Chris Eppstein 2012-03-18 15:18:01 -07:00
parent 3f96108688
commit 1aca960401

View File

@ -67,8 +67,11 @@ $base-half-leader: $base-leader / 2;
} }
} }
// Resets the line-height to 1 vertical rhythm unit. Does not work in all // Resets the line-height to 1 vertical rhythm unit.
// circumstances. // Does not work on elements whose font-size is different from $base-font-size.
//
// @deprecated This mixin will be removed in the next release.
// Please use the `adjust-leading-to` mixin instead.
@mixin reset-baseline { @mixin reset-baseline {
@include adjust-leading-to(1, if($relative-font-sizing, $base-font-size, $base-font-size)); @include adjust-leading-to(1, if($relative-font-sizing, $base-font-size, $base-font-size));
} }