fix(css): alternating colour rows

- https://www.textfixer.com/tutorials/css-table-alternating-rows.php
This commit is contained in:
MDLeom 2020-03-06 07:32:53 +00:00
parent 91cc8e78e3
commit 0e2799edbf
No known key found for this signature in database
GPG Key ID: 5D9DB57A25D34EE3
1 changed files with 3 additions and 1 deletions

View File

@ -181,7 +181,9 @@ th {
}
table th,
th {
th,
table tr:nth-child(even),
tr:nth-child(even) {
background: var(--alt-bg-color);
}