I am currently working on a Vuetify table with the class condition-table
. I have applied the following CSS styling:
.condition-table {
background-color: #e1f5fe70;
}
The styling seems to work fine so far. However, when I added this additional CSS:
.condition-table > thead > tr {
color: black;
background-color: white;
}
Unfortunately, it does not seem to have any effect at all. My goal is to make the table header stand out more compared to the row items.
If you notice anything that I may have missed or if you have any suggestions, please feel free to let me know.