Skip to content
Snippets Groups Projects
Commit ed1aa268 authored by Atte Keinänen's avatar Atte Keinänen
Browse files

Don't show the clear button on IE11 inputs

parent e24bb326
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,13 @@
transition: border .3s linear;
}
/* React doesn't receive events from IE11:s input clear button so don't show it */
.input::-ms-clear {
display: none;
width: 0;
height: 0;
}
.input--small {
padding: 0.3rem 0.4rem;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment