mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
4a05f19a3b
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]
8 lines
152 B
SCSS
8 lines
152 B
SCSS
// CSS image replacement
|
|
@mixin text-hide() {
|
|
font: 0/0 a;
|
|
color: transparent;
|
|
text-shadow: none;
|
|
background-color: transparent;
|
|
border: 0;
|
|
}
|