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