Describe the bug
rowStyle={ height: ''} does not work properly. If you set the height to anything under 49 pixels this fails to render properly.
To Reproduce
Steps to reproduce the behavior:
options={{ rowStyle: { height: '10px'}} in your table or the example table in the official docsExpected behavior
Previously this was working, if I set the row height to 10px it should apply that style.
Screenshots

Desktop (please complete the following information):
Additional context
There is nothing indicating that another style is overriding this rowStyle change, as shown in the screenshot provided.
It requires 49px at least. But i will take a look at it to decrease minimum size.
Hi @mbrn,
Thanks for taking up this enhancement. may I knw if there is any update about this issue? :)
@mbrn, do you have some update related to the row height less the 49px ?
I found a solution for my use, I need to edit this property to change the size of the table header and table body:
.MuiTableCell-root {
height: 10px !important;
padding: 0px !important;
font-size: 0.7rem !important;
}
.MuiButtonBase-root{
height: 10px !important;
}
with this you can adjust for you
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. You can reopen it if it required.
Most helpful comment
I found a solution for my use, I need to edit this property to change the size of the table header and table body:
.MuiTableCell-root {
height: 10px !important;
padding: 0px !important;
font-size: 0.7rem !important;
}
.MuiButtonBase-root{
height: 10px !important;
}
with this you can adjust for you