ant-design-blazor/components/style/core/base.less

18 lines
310 B
Plaintext
Raw Normal View History

2020-05-31 16:00:40 +08:00
// 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;
2019-12-05 22:58:05 +08:00
}
2020-05-31 16:00:40 +08:00
&,
*,
*::before,
*::after {
box-sizing: border-box; // 1
2019-12-05 22:58:05 +08:00
}
}