Sha256: fd854129b08b3719a05f9d600f7d9d822c12ac9856ffff58124d03546b5f9f1c

Contents?: true

Size: 389 Bytes

Versions: 27

Compression:

Stored size: 389 Bytes

Contents

/// Clearfix mixin - http://nicolasgallagher.com/micro-clearfix-hack/
///
/// @author Nicolas Gallagher

@mixin clearfix {
  &:before,
  &:after {
    display: table;
    content: " ";
  }

  &:after {
    clear: both;
  }
}

@mixin hidpi($dpi: 2) {
  @media
  (-webkit-min-device-pixel-ratio: $dpi),
  (min-device-pixel-ratio: $dpi),
  (min-resolution: #{$dpi}dppx) {
    @content;
  }
}

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
ustyle-1.7.0 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.6.1 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.5.8 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.4.1 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.4.0 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.3.12 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.3.6 vendor/assets/stylesheets/ustyle/mixins/_general.scss