aslagle / reactive-table

A reactive table designed for Meteor
https://atmospherejs.com/aslagle/reactive-table
Other
328 stars 138 forks source link

how to set row height ? #472

Open tomvolek opened 6 years ago

tomvolek commented 6 years ago

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

aslagle commented 6 years ago

You can do this with normal css:

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