Sha256: 19687a2121cdcc95298f550f5c1892074ad0ffce632faf9265bebc2d6549c647
Contents?: true
Size: 446 Bytes
Versions: 15
Compression:
Stored size: 446 Bytes
Contents
/// Forces the element to fill its parent container. /// /// @example scss - Usage /// .element { /// @include fill-parent; /// } /// /// @example css - CSS Output /// .element { /// width: 100%; /// -webkit-box-sizing: border-box; /// -moz-box-sizing: border-box; /// box-sizing: border-box; /// } @mixin fill-parent() { width: 100%; @if $border-box-sizing == false { @include box-sizing(border-box); } }
Version data entries
15 entries across 15 versions & 2 rubygems