Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix input shrink
  • Loading branch information
mano92fuentesjimenez committed Sep 8, 2020
commit eea9808d72e0d7bd6715c5008a6567420b810b68
8 changes: 8 additions & 0 deletions normalize.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,14 @@ input { /* 1 */
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.
* 1. Remove the inheritance of text transform in Firefox.
Expand Down