Fixed round corners on tables for Firefox

This commit is contained in:
Julian Müller (ChaoticByte) 2023-10-31 18:17:12 +01:00
parent 31ae251164
commit 4eb2911150

View file

@ -97,11 +97,12 @@ table {
border-radius: var(--border-radius);
}
tr {
tr > th,
tr > td {
background: var(--bg-color);
}
tr:nth-child(2n+2) {
tr:nth-child(2n+2) > td {
background: var(--bg-color2);
}