Sha256: 97e134dc4987df9d3712786fe5e9d87037faf639de0a31ff6e181ddf2a94c49c

Contents?: true

Size: 254 Bytes

Versions: 4

Compression:

Stored size: 254 Bytes

Contents

// Cross browser clearfixing
@mixin clearfix{
	&:before, &:after { content: ""; display: table; }
	&:after { clear: both; }
	zoom: 1;
}

// Legacy clearfixing
@mixin pie-clearfix {
	&:after {
		content: "";
		display: table;
		clear: both;
	}
	zoom:1;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
facades-0.0.6 lib/facades/stylesheets/facades/utilities/_clearfix.scss
facades-0.0.5 lib/facades/stylesheets/facades/utilities/_clearfix.scss
facades-0.0.4 lib/facades/stylesheets/facades/utilities/_clearfix.scss
facades-0.0.3 lib/facades/stylesheets/facades/utilities/_clearfix.scss