Attempting to resolve an issue with CSS, I have tried adding the following code:
.table-responsive,
.dataTables_scrollBody {
overflow: visible !important;
}
However, the solution did not work as expected.
Interestingly, when applying a dropdown picklist field within a modal, the below css was helpful. However, it did not function properly within a lightning card:
.slds-modal__content{
overflow: initial;
}