ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
18 lines (16 loc) • 310 B
text/less
// Config global less under antd
[class^=~'@{ant-prefix}-'],
[class*=~' @{ant-prefix}-'] {
// remove the clear button of a text input control in IE10+
&::-ms-clear,
input::-ms-clear,
input::-ms-reveal {
display: none;
}
&,
*,
*::before,
*::after {
box-sizing: border-box; // 1
}
}