From f6ef89d6c310348a42d7cc74dcadc56b80fcf280 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 18 Jan 2015 15:30:34 -0800 Subject: [PATCH] Use expressions for thirds to avoid precision issues --- scss/_variables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_variables.scss b/scss/_variables.scss index 518affebfa..60fb87015e 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -103,7 +103,7 @@ $padding-sm-horizontal: .75rem !default; $padding-xs-vertical: .2rem !default; $padding-xs-horizontal: .5rem !default; -$line-height-lg: 1.3333333 !default; +$line-height-lg: (4/3) !default; $line-height-sm: 1.5 !default; $border-radius-base: .25rem !default;