From 10eb970856430349bb7879a1176e5e7ab53124e6 Mon Sep 17 00:00:00 2001 From: James Cunningham Date: Thu, 22 Jan 2015 16:02:59 -0700 Subject: [PATCH] Workaround, libsass does not correctly interpolate here. --- lib/compass/typography/_vertical_rhythm.scss | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/compass/typography/_vertical_rhythm.scss b/lib/compass/typography/_vertical_rhythm.scss index 066af3c..6e9825f 100644 --- a/lib/compass/typography/_vertical_rhythm.scss +++ b/lib/compass/typography/_vertical_rhythm.scss @@ -180,10 +180,8 @@ $base-half-leader: $base-leader / 2; @if not($relative-font-sizing) and $font-size != $base-font-size { @warn "$relative-font-sizing is false but a relative font size was passed to apply-side-rhythm-border"; } - border-#{$side}: { - style: $border-style; - width: $font-unit * $width / $font-size; - }; + border-#{$side}-style: $border-style; + border-#{$side}-width: $font-unit * $width / $font-size; padding-#{$side}: rhythm($lines, $font-size, $offset: $width); }