Dash DataTable radio button sizing

I’m trying to style my dash datatable to increase the overall size of elements. I’m trying to increase the size of the radio button when row_selectable = single

Capture3

In the tables css rules I’m guessing it’s something like:

{'selector':'.dash-table-container .dash-spreadsheet-container input[type="radio"]','rule':'transform: scale(1.5)'}

But that doesn’t seem to work. Any ideas?

Thanks in advance!

I was able to finally figure it out, for anyone else that finds this looking for an answer, you can update the table’s css with:

{'selector':'.dash-spreadsheet-container input','rule':'transform: scale(1.5)'}
1 Like