Sha256: 1f31fc56aba861f2945ff42c4e2ecc271bb23009a979d0fdadda58c14254b791
Contents?: true
Size: 413 Bytes
Versions: 28
Compression:
Stored size: 413 Bytes
Contents
@charset "UTF-8"; /// Provides an easy way to include a clearfix for containing floats. /// /// @link https://goo.gl/yP5hiZ /// /// @example scss /// .element { /// @include clearfix; /// } /// /// // CSS Output /// .element::after { /// clear: both; /// content: ""; /// display: block; /// } @mixin clearfix { &::after { clear: both; content: ""; display: block; } }
Version data entries
28 entries across 28 versions & 5 rubygems