Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
240 Bytes
//
// Helper
// helper classes for different cases
//
// Clearfix for sections that use float property
.floatfix {
&:before,
&:after {
content: '';
display: table;
}
&:after {
clear: both;
}
}