mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 20:48:24 +00:00
21 lines
377 B
Plaintext
Executable File
21 lines
377 B
Plaintext
Executable File
// Fix Input component height issue in IE11
|
|
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
.@{ant-prefix}-input {
|
|
height: @input-height-base;
|
|
|
|
&-lg {
|
|
height: @input-height-lg;
|
|
}
|
|
|
|
&-sm {
|
|
height: @input-height-sm;
|
|
}
|
|
|
|
&-affix-wrapper {
|
|
> input.@{ant-prefix}-input {
|
|
height: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|