// micro-clearfix
@mixin micro-clearfix {
	&:before,
	&:after {
		content: '';
		display:table;
	}
	&:after {
		clear:both;
	}
}

