Sha256: 3a6ed23271e7e7443e444e21eddf0ce5df49ee047ffb2ba4f8b7fca3f5d185d0
Contents?: true
Size: 329 Bytes
Versions: 6
Compression:
Stored size: 329 Bytes
Contents
/** * Box sizing * * @access private * * @param {String} $type ("border-box") - border-box type * * @requires local box-sizing mixin if available */ @mixin flint-box-sizing($type: "border-box") { @if mixin-exists("box-sizing") { @include box-sizing($type); } @else { box-sizing: #{$type}; } }
Version data entries
6 entries across 6 versions & 1 rubygems