mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 08:08:10 -07:00
20 lines
185 B
SCSS
20 lines
185 B
SCSS
@mixin clearfix() {
|
|
&::after {
|
|
display: table;
|
|
clear: both;
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
.clearfix {
|
|
@include clearfix();
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
}
|