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

13 lines
168 B
Plaintext

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