this can be done by changing the overflow for the CSS classes of the smartsheet rows to accept a max-height, rather than overflow:hidden.
Doing so will make all forms of content for users easier to digest, and make getting to other rows less cumbersome.
For this POC, I changed the following:
```
.gridRowWrapper>div {
overflow: auto;
max-height: 200px;
}
```
Ideally, there should be an in sheet option, to choose for auto-sizing cells, or to set a max-height.