Sha256: 937f9b845eaf1779f17f12d38744fa42323d345d48aa7c855c8d75b914aaffef

Contents?: true

Size: 397 Bytes

Versions: 2

Compression:

Stored size: 397 Bytes

Contents

/// Resets the active display property to `block`. Particularly useful when changing the display property in a single row.
///
/// @example scss - Usage
///   .element {
///     @include row(table);
///     // Context changed to table display
///   }
///
///   @include reset-display;
///   // Context is reset to block display

@mixin reset-display {
  $container-display-table: false !global;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
neat-1.9.1 app/assets/stylesheets/grid/_reset-display.scss
neat-1.9.0 app/assets/stylesheets/grid/_reset-display.scss