Make table on List component x-scrollable
I am having a hard time to make a scrollable table working with a useTable hook using antdesign nested within the List component (see screenshot)
I managed to make it work by writing custom css (using tailwind classes)
div.ant-spin-nested-loading {
@apply overflow-y-auto;
}
Is there anyway you could expose a property that would allow for this option? I tried to play around with the "scroll" property on the <Table> component but without success.
I managed to make it work by writing custom css (using tailwind classes)
div.ant-spin-nested-loading {
@apply overflow-y-auto;
}
Is there anyway you could expose a property that would allow for this option? I tried to play around with the "scroll" property on the <Table> component but without success.

