hasankzl / react-flexy-table

most easy to use react table
21 stars 9 forks source link

How we change the size of row #17

Closed GSoulat closed 3 years ago

GSoulat commented 3 years ago

Hi, nice job for react-flexy-table

I would like to change every row, because there are to big ti height, I need --> <td> smaller. Capture

How I can change ? thank you for the help

hasankzl commented 3 years ago

Hi GSoulat ,

sorry for late answer.

You can see how you change table style here: https://github.com/hasankzl/react-flexy-table#styling

for your problem you can override table style. First add a className <ReactFlexyTable data={data} className='my-table' />

after that you can simply add css to it like

.my-table td {
  width:200px;
}
GSoulat commented 3 years ago

Thank you