How to modify form style by ant-design

Table colummn has className, but only works on one column. Can you uniformly set the font size and row high attributes in the table

Aug.03,2021

Table has an attribute rowClassName= {styles.row}

//less
.row {
    //
}

or look at the element to find the selector that controls font and line height, and uniformly change

in less.

first of all, if you want to set the font size and line height, the most direct way is to use the size property of table (including Default Middle Small),
). Secondly, if you want to personalize the font size of the table, you can set the:: global global setting by setting the style, but this may pollute the global,
and when you write in a local less file to modify the style of the table. It may not be easy to maintain (think of the rest of your code). If you are using Pro, it is best to write it in the index.less under src when modifying this method (after all, the global style of modification is written here).
finally, if you want to modify the table style of the global theme, you can modify it through the official custom theme configuration (based on Pro) ~
Custom theme configuration official website

Menu