mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00
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;
|
|
} |