Remove explicit background-color on tr element

This commit is contained in:
Lucas Larroche 2021-12-31 16:31:25 +07:00
parent 94fe6da60c
commit 92c21aa1d4
17 changed files with 17 additions and 38 deletions

View file

@ -33,16 +33,11 @@ td {
text-align: start;
}
// Rows
tr {
background-color: var(--background-color);
}
// Striped
table {
&[role="grid"] {
tbody tr:nth-child(odd) {
--background-color: var(--table-row-stripped-background-color);
background-color: var(--table-row-stripped-background-color);
}
}
}