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

14 lines
176 B
Plaintext
Raw Normal View History

2017-10-26 07:18:08 +00:00
// mixins for clearfix
// ------------------------
.clearfix() {
zoom: 1;
&:before,
&:after {
2019-01-02 13:01:56 +00:00
content: '';
2017-10-26 07:18:08 +00:00
display: table;
}
&:after {
clear: both;
}
}