13 lines
178 B
SCSS
13 lines
178 B
SCSS
|
// Clearfix
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
%clearfix::before,
|
||
|
%clearfix::after {
|
||
|
content: " ";
|
||
|
display: table;
|
||
|
}
|
||
|
|
||
|
%clearfix::after {
|
||
|
clear: both;
|
||
|
}
|