mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
14 lines
179 B
Plaintext
14 lines
179 B
Plaintext
// mixins for clearfix
|
|
// ------------------------
|
|
.clearfix() {
|
|
zoom: 1;
|
|
&::before,
|
|
&::after {
|
|
display: table;
|
|
content: '';
|
|
}
|
|
&::after {
|
|
clear: both;
|
|
}
|
|
}
|