fix input shrink

This commit is contained in:
mano92fuentesjimenez 2020-09-08 11:37:40 -04:00
parent fc091cce15
commit eea9808d72
No known key found for this signature in database
GPG Key ID: DDC1921ADA0F2DC1

View File

@ -178,6 +178,14 @@ input { /* 1 */
overflow: visible; overflow: visible;
} }
/**
* Normalizes firefox and edge approach of input shrinking to chrome behaviour
*/
input {
min-width: 0;
min-height: 0;
}
/** /**
* Remove the inheritance of text transform in Edge, Firefox, and IE. * Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox. * 1. Remove the inheritance of text transform in Firefox.