Sha256: 644d4e16181286c689d65a38112a3f8319c5fb251772987bbc36779b42437d82

Contents?: true

Size: 477 Bytes

Versions: 28

Compression:

Stored size: 477 Bytes

Contents

@charset "UTF-8";

/// Hides the text in an element, commonly used to show an image instead. Some
/// elements will need block-level styles applied.
///
/// @link https://goo.gl/EvLRIu
///
/// @example scss
///   .element {
///     @include hide-text;
///   }
///
///   // CSS Output
///   .element {
///     overflow: hidden;
///     text-indent: 101%;
///     white-space: nowrap;
///   }

@mixin hide-text {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}

Version data entries

28 entries across 28 versions & 5 rubygems

Version Path
bourbon-5.0.0 core/bourbon/library/_hide-text.scss
dream-theme-0.1.0 _sass/bourbon/bourbon/library/_hide-text.scss
bourbon-5.0.0.beta.8 core/bourbon/library/_hide-text.scss
spice-rack-0.4.0 _sass/bourbon/bourbon/library/_hide-text.scss
spice-rack-0.3.0 _sass/bourbon/bourbon/library/_hide-text.scss
spice-rack-0.2.0 _sass/bourbon/bourbon/library/_hide-text.scss
spice-rack-0.1.0 _sass/bourbon/bourbon/library/_hide-text.scss
bourbon-5.0.0.beta.7 core/bourbon/library/_hide-text.scss