Skip to content

Commit

Permalink
fix(frontend): White color in choose-events
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Jun 2, 2023
1 parent 0b806e4 commit bf10024
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
}

th:first-child, td:first-child {
background: linear-gradient(90deg, white, rgba(white, 0.75));
background: linear-gradient(90deg, var(--body-bg), rgba(var(--body-bg), 0.75));
left: 0;
}

th:last-child, td:last-child {
background: linear-gradient(90deg, rgba(white, 0.75), white);
background: linear-gradient(90deg, rgba(var(--body-bg), 0.75), var(--body-bg));
right: 0;
}
}
Expand Down

0 comments on commit bf10024

Please sign in to comment.