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
reustyle-2.0.11 vendor/assets/stylesheets/reustyle/mixins/_general.scss
reustyle-2.0.10 vendor/assets/stylesheets/ustyle/mixins/_general.scss
reustyle-2.0.9 vendor/assets/stylesheets/ustyle/mixins/_general.scss
reustyle-2.0.8 vendor/assets/stylesheets/ustyle/mixins/_general.scss
reustyle-2.0.7 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.19.2 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.16.2 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.16.1 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.15.3 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.14.11 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.14.10 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.14.0 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.12.6 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.12.1 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.12.0 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.11.1 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.10.0 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.8.7 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.8.1 vendor/assets/stylesheets/ustyle/mixins/_general.scss
ustyle-1.8.0 vendor/assets/stylesheets/ustyle/mixins/_general.scss