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

14 lines
169 B
Plaintext

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