aslagle/reactive-table

how to set row height ?

Opened this issue · 1 comments

Sorry if this is a beginner question . a couple of css questions

  1. How can I set the row height ?
  2. how can i change the table border color ?

Thanks
Tom

You can do this with normal css:

.reactive-table tr {
  height: 20px;
}
.reactive-table {
  border-color: green;
}