cycat-project-website/_sass/bootstrap/mixins/_text-hide.scss

12 lines
326 B
SCSS
Raw Normal View History

2018-12-09 08:21:01 +01:00
// CSS image replacement
2020-08-23 12:01:06 +02:00
@mixin text-hide($ignore-warning: false) {
2018-12-09 08:21:01 +01: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;
2020-08-23 12:01:06 +02:00
@include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
2018-12-09 08:21:01 +01:00
}