From 4a05f19a3b9e02ed4996eb5e2c78077376481c7b Mon Sep 17 00:00:00 2001
From: Chris Rebert <code@chrisrebert.com>
Date: Fri, 25 Dec 2015 14:01:46 -0700
Subject: [PATCH] Fix syntax of .text-hide's `font` property value

In SCSS, the quotes were included verbatim in the resulting CSS, which isn't valid syntax for the `font` property.
Removing the quotes fixes the syntax error and does not cause any SCSS compiler error.

[skip sauce]
[skip validator]
---
 scss/mixins/_text-hide.scss | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scss/mixins/_text-hide.scss b/scss/mixins/_text-hide.scss
index daed5fb7af..52a38a9069 100644
--- a/scss/mixins/_text-hide.scss
+++ b/scss/mixins/_text-hide.scss
@@ -1,6 +1,6 @@
 // CSS image replacement
 @mixin text-hide() {
-  font: "0/0" a;
+  font: 0/0 a;
   color: transparent;
   text-shadow: none;
   background-color: transparent;