IE11 form content overlaps

When I attempt to render a form in IE11 the content of the form fields overlaps, has anyone come across this or found a solution to this problem?

[original thread by mattrout92]

Hi,
thank you for your question. Please note that most comitters are on vacation until January 7th, we will get back to you in the new year!
best regards
Jonas

[mattrout92]

FYI I solved this by adding the following css:

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
     [class*='MuiGrid-grid-xs-true'] {
    flex-basis: auto !important;
  }
}

@mattrout92 Thanks for updating the issue with your solution!