ant-design-vue/components/style/mixins/clearfix.less

14 lines
176 B
Plaintext

// mixins for clearfix
// ------------------------
.clearfix() {
zoom: 1;
&:before,
&:after {
content: '';
display: table;
}
&:after {
clear: both;
}
}