Sha256: 73bec4fd7b14b30c12755dfc40a33b3ab90fdb78c1d4b1bb14fef7d9adc28a27
Contents?: true
Size: 931 Bytes
Versions: 36
Compression:
Stored size: 931 Bytes
Contents
@charset "UTF-8"; /// Makes an element a outer container by centering it in the viewport, clearing its floats, and setting its `max-width`. /// Although optional, using `outer-container` is recommended. The mixin can be called on more than one element per page, as long as they are not nested. /// /// @param {Number [unit]} $local-max-width [$max-width] /// Max width to be applied to the element. Can be a percentage or a measure. /// /// @example scss - Usage /// .element { /// @include outer-container(100%); /// } /// /// @example css - CSS Output /// .element { /// max-width: 100%; /// margin-left: auto; /// margin-right: auto; /// } /// /// .element::after { /// clear: both; /// content: ""; /// display: table; /// } @mixin outer-container($local-max-width: $max-width) { @include clearfix; max-width: $local-max-width; margin: { left: auto; right: auto; } }
Version data entries
36 entries across 30 versions & 9 rubygems