_text-hide.scss 336 Bytes
Newer Older
1
// CSS image replacement
Mark Otto's avatar
Mark Otto committed
2
@mixin text-hide() {
3
  // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
4
  font: 0/0 a;
5
6
7
8
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
Mark Otto's avatar
Mark Otto committed
9
10

  @warn "The `text-hide()` mixin has been deprecated as of v4.1.0. It will be removed entirely in v5.";
11
}