I have fairly long cell contents, and I would like to align the contents to the top. I’ve tried using the Box Stack and Inline components, but it looks like the CSS at the td level is the issue. Even the “grow” property in the box doesn’t let it fill the space. I’m not the best at CSS, so please advise if I’m missing something.
My last try:
{
key: createKey(line.data),
content:
// <Box paddingBlockStart="space.050" paddingInlineStart="space.050"><Stack alignInline="start" alignBlock="start" grow="fill">{line.data}</Stack></Box>,
<Box margin="space.050"><Stack alignInline="start" alignBlock="start" grow="fill"><Inline alignInline="start" alignBlock="start" paddingBlockStart="space.050" paddingInlineStart="space.050">{line.data}</Inline></Stack></Box>,
},