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

14 lines
179 B
Plaintext
Raw Normal View History

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