Sha256: c75e2eda0022507271038e324864d8068f38d3c9f026a36ae04a6a508670e0c8
Contents?: true
Size: 755 Bytes
Versions: 29
Compression:
Stored size: 755 Bytes
Contents
// Foundation for Sites by ZURB // foundation.zurb.com // Licensed under MIT Open Source //// /// @group prototype-border-box //// /// Responsive breakpoints for border box. /// @type Boolean $prototype-border-box-breakpoints: $global-prototype-breakpoints !default; /// Border box utility @mixin border-box { box-sizing: border-box !important; } @mixin foundation-prototype-border-box { .border-box { @include border-box; } @if ($prototype-border-box-breakpoints) { // Loop through Responsive Breakpoints @each $size in $breakpoint-classes { @include breakpoint($size) { @if $size != $-zf-zero-breakpoint { .#{$size}-border-box { @include border-box; } } } } } }
Version data entries
29 entries across 29 versions & 4 rubygems