reactive-table
reactive-table copied to clipboard
how to set row height ?
Sorry if this is a beginner question . a couple of css questions
- How can I set the row height ?
- 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;
}