From be9208c9cad3d04fcf1f31ccf2b4f19ccc2cd591 Mon Sep 17 00:00:00 2001 From: Chris Lee Date: Tue, 12 Aug 2014 23:51:31 -0500 Subject: [PATCH] Fix for #5556 - Wrap division with parentheses --- scss/foundation/components/_global.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/foundation/components/_global.scss b/scss/foundation/components/_global.scss index d97d36eae..b5b7d705b 100755 --- a/scss/foundation/components/_global.scss +++ b/scss/foundation/components/_global.scss @@ -149,7 +149,7 @@ $base-line-height: 150% !default; } @else { top: 50%; - margin-top: -$width/2; + margin-top: -($width/2); #{$opposite-direction}: $topbar-link-padding; } -- 2.47.2