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