mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-18 13:30:23 +00:00
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;
|
|
}
|