andrewlewis 8fbe11aa54 Move extensions/cronet to libraries/datasource_cronet
See go/media-apis-codebase-google3.

PiperOrigin-RevId: 369425137
2021-04-20 15:34:52 +01:00

19 lines
184 B
SCSS

@mixin clearfix() {
&::after {
display: table;
clear: both;
content: "";
}
}
.clearfix {
@include clearfix();
}
.left {
float: left;
}
.right {
float: right;
}