mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
19 lines
No EOL
184 B
SCSS
19 lines
No EOL
184 B
SCSS
@mixin clearfix() {
|
|
&::after {
|
|
display: table;
|
|
clear: both;
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
.clearfix {
|
|
@include clearfix();
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
} |