You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to modify special style, such as row padding of module Table body in .css or .scss. Do I need to import something?
My code:
.ant-table-tbody > tr > td {
padding: 13px 8px !important;
}
The text was updated successfully, but these errors were encountered:
I have found an API of Table named rowClassName, it did can add className for table row, but the new issue is how can I apply to my .css file. I can't write like that "
rowClassName: (record, index) => {
return {styles.productionTableRow};
},
I want to modify special style, such as row padding of module Table body in .css or .scss. Do I need to import something?
My code:
.ant-table-tbody > tr > td {
padding: 13px 8px !important;
}
The text was updated successfully, but these errors were encountered: