Sha256: f4fb8b29c737d1c5de664be03a70dccab6565cee62b290a49329b6a366641404
Contents?: true
Size: 470 Bytes
Versions: 19
Compression:
Stored size: 470 Bytes
Contents
@mixin breakpoint-min($width) { @media screen and (min-width: ($width + 1px)) { @content; } } @mixin breakpoint-max($width) { @media screen and (max-width: $width) { @content; } } @mixin breakpoint-min-max($min-width, $max-width) { @media screen and (min-width: ($min-width + 1px)) and (max-width: ($max-width)) { @content; } } @mixin breakpoint-mobile($offset: 0px) { @include breakpoint-max(($breakpoint-mobile + $offset)) { @content; } }
Version data entries
19 entries across 19 versions & 1 rubygems