hugo-whisper-theme/assets/scss/bootstrap/mixins/_text-hide.scss

12 lines
326 B
SCSS
Raw Normal View History

2019-02-17 06:55:16 +00:00
// CSS image replacement
2019-07-23 01:03:11 +00:00
@mixin text-hide($ignore-warning: false) {
2019-02-17 06:55:16 +00:00
// 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;
2019-07-23 01:03:11 +00:00
@include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
2019-02-17 06:55:16 +00:00
}