Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_text-hide.scss « mixins « scss « bootstrap « scss « assets « static - github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a923011ec73de336b6d89f731b0a81dcc14c4a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CSS image replacement
@mixin text-hide($ignore-warning: false) {
  // 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;

  @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
}