adding bouron / neat installs

This commit is contained in:
2016-10-23 22:10:23 -04:00
parent 0392180886
commit fe8c5214e1
99 changed files with 4052 additions and 0 deletions

25
_sass/bourbon/addons/_clearfix.scss vendored Normal file
View File

@@ -0,0 +1,25 @@
@charset "UTF-8";
/// Provides an easy way to include a clearfix for containing floats.
///
/// @link http://cssmojo.com/latest_new_clearfix_so_far/
///
/// @example scss - Usage
/// .element {
/// @include clearfix;
/// }
///
/// @example css - CSS Output
/// .element::after {
/// clear: both;
/// content: "";
/// display: table;
/// }
@mixin clearfix {
&::after {
clear: both;
content: "";
display: table;
}
}