Hi,
We are seeing a strange issue with IE 11 only.
It looks fine in Chrome and Edge but looks squished in IE 11.
After further investigation, I've tracked down the responsible element that is causing the squished height.

It is the div with the class "_1d5no1b"
I have no idea why this div doesn't seem to respect height: 100% in IE 11 but does respect height: 400px
I think the component in question is DynamicGrid. https://engineering.cerner.com/terra-ui/#/components/terra-dynamic-grid/dynamic-grid/dynamic-grid
Expect this div to have height of 100% in IE 11
div looks squished
I created an example of this using repl.it here:
https://repl.it/@SpartaSixZero/List-displaying-incorrectly-in-IE-11
@tbiethman
Is there a trick to getting your code to run? the link appears to be unable to generate it
Looks to be working now. I'll investigate
So this is a defect within IE11 itself that won't be resolved when you have auto sizing values. See
https://css-tricks.com/css-grid-in-ie-debunking-common-ie-grid-misconceptions/ and https://stackoverflow.com/questions/28627879/flexbox-not-filling-height-in-ie11 for more details.
In your code, one thing to note is that IE grids require explicit values for all of their columns and rows. Thus, to get what you need working, you need to set grid-column-rows of your grid template.
const template = {
"grid-template-columns": "350px 1fr",
"grid-template-rows": "100%",
};
Thanks @JakeLaCombe . Appreciate the help!!! I'll give this a shot today!
Verified that the solution works perfectly!
Most helpful comment
So this is a defect within IE11 itself that won't be resolved when you have auto sizing values. See
https://css-tricks.com/css-grid-in-ie-debunking-common-ie-grid-misconceptions/ and https://stackoverflow.com/questions/28627879/flexbox-not-filling-height-in-ie11 for more details.
In your code, one thing to note is that IE grids require explicit values for all of their columns and rows. Thus, to get what you need working, you need to set
grid-column-rowsof your grid template.