NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/ant-design-vue/lib/style/mixins/clearfix.less

14 lines
179 B
Plaintext
Raw Normal View History

2023-09-14 14:47:11 +08:00
// mixins for clearfix
// ------------------------
.clearfix() {
zoom: 1;
&::before,
&::after {
display: table;
content: '';
}
&::after {
clear: both;
}
}