From 58b13a1298a12cf3023f85af1577437215c2e08e Mon Sep 17 00:00:00 2001 From: Michael Hellein Date: Tue, 10 Mar 2015 09:28:15 -0400 Subject: [PATCH] Removed unnecessary unit conversion. --- lib/compass/typography/text/_replacement.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/compass/typography/text/_replacement.scss b/lib/compass/typography/text/_replacement.scss index 35e4e50..bb0e6d5 100644 --- a/lib/compass/typography/text/_replacement.scss +++ b/lib/compass/typography/text/_replacement.scss @@ -45,8 +45,8 @@ $hide-text-direction: left !default; // for your application. @mixin hide-text($direction: $hide-text-direction) { @if $direction == left { - $approximate-em-value: 12px / 1em; - $wider-than-any-screen: -9999em; + $approximate-em-value: 12px; + $wider-than-any-screen: -9999; text-indent: $wider-than-any-screen * $approximate-em-value; overflow: hidden; text-align: left;