Layout von Websiten mit Bootstrap und Foundation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_text-hide.scss 326B

1234567891011
  1. // CSS image replacement
  2. @mixin text-hide($ignore-warning: false) {
  3. // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
  4. font: 0/0 a;
  5. color: transparent;
  6. text-shadow: none;
  7. background-color: transparent;
  8. border: 0;
  9. @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
  10. }