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]
This commit is contained in:
parent
4258fb7992
commit
4a05f19a3b
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue