/// Help replace an element's text content with an image (Such as in a nav
/// brand image link). Maintain the accessibility and SEO benefits of heading
/// tags, while utilizing an image instead of text.
///
/// @group Utilities
@mixin text-hide {
  border: 0;
  background-color: transparent;
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
}

/// Help replace an element's text content with an image (Such as in a nav
/// brand image link). Maintain the accessibility and SEO benefits of heading
/// tags, while utilizing an image instead of text.
///
/// @group Utilities
///
/// @alias text-hide
@mixin hide-text {
  border: 0;
  background-color: transparent;
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
}
