Sha256: df0f24b19831481cfb9ca114dc98b09bc5f21f11ceeab40ad4bd5aeda2ee0b5b
Contents?: true
Size: 377 Bytes
Versions: 6
Compression:
Stored size: 377 Bytes
Contents
/// /// Box sizing /// /// @access private /// /// @param {String} $type ("border-box") - border-box type /// /// @requires {Mixin} box-sizing - local mixin if available /// /// @group Internal Mixins /// @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