Sha256: 299df0e810d25f85bb23511c095f0449995eb442e2116441a8be6f5f47c95f39
Contents?: true
Size: 570 Bytes
Versions: 29
Compression:
Stored size: 570 Bytes
Contents
// Foundation for Sites by ZURB // foundation.zurb.com // Licensed under MIT Open Source //// /// @group prototype-box //// /// Box Mixin: Easily create a square, rectangle or a circle /// @param {Number} $width[] Width of the box /// @param {Number} $height[$width] Height of the box, defaults to `$width` to easily make a square /// @param {Boolean} $circle[false] Makes the box a circle, by default `false`. @mixin box( $width, $height: $width, $circle: false ) { width: $width; height: $height; @if $circle { border-radius: 50% !important; } }
Version data entries
29 entries across 29 versions & 4 rubygems