reactive-table icon indicating copy to clipboard operation
reactive-table copied to clipboard

how to set row height ?

Open tomvolek opened this issue 8 years ago • 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

tomvolek avatar Sep 06 '17 23:09 tomvolek

You can do this with normal css:

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

aslagle avatar Sep 10 '17 22:09 aslagle