17 lines
237 B
Plaintext
17 lines
237 B
Plaintext
![]() |
// mixins for clearfix
|
||
|
// ------------------------
|
||
|
.clearfix() {
|
||
|
zoom: 1;
|
||
|
&::before,
|
||
|
&::after {
|
||
|
display: table;
|
||
|
content: ' ';
|
||
|
}
|
||
|
&::after {
|
||
|
clear: both;
|
||
|
height: 0;
|
||
|
font-size: 0;
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
}
|