19 lines
184 B
SCSS
19 lines
184 B
SCSS
@mixin clearfix() {
|
|
&::after {
|
|
display: table;
|
|
clear: both;
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
.clearfix {
|
|
@include clearfix();
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
} |