10 lines
231 B
SCSS
10 lines
231 B
SCSS
|
// CSS image replacement
|
||
|
@mixin text-hide() {
|
||
|
// stylelint-disable-next-line font-family-no-missing-generic-family-keyword
|
||
|
font: 0/0 a;
|
||
|
color: transparent;
|
||
|
text-shadow: none;
|
||
|
background-color: transparent;
|
||
|
border: 0;
|
||
|
}
|