idolezal commited on
Commit
25b4fc2
1 Parent(s): 8f93450

Fix strange blinking rows and font-family in all tables

Browse files
Files changed (1) hide show
  1. app.py +4 -9
app.py CHANGED
@@ -246,18 +246,13 @@ custom_css = """
246
 
247
  footer {visibility: hidden}
248
 
249
- .leaderboard-table tr:first-child th {
250
- background-color: var(--table-even-background-fill) !important;
251
  font-family: "IBM Plex Mono";
252
  }
253
 
254
- .leaderboard-table tr td {
255
- background-color: var(--table-even-background-fill) !important;
256
- font-family: "IBM Plex Mono";
257
- }
258
-
259
- .leaderboard-table tr.row_odd td {
260
- background-color: var(--table-odd-background-fill) !important;
261
  }
262
 
263
  .leaderboard-table th:first-child, .leaderboard-table td:first-child {
 
246
 
247
  footer {visibility: hidden}
248
 
249
+ tr {
250
+ background-color: var(--table-even-background-fill);
251
  font-family: "IBM Plex Mono";
252
  }
253
 
254
+ tr.row_odd {
255
+ background-color: var(--table-odd-background-fill);
 
 
 
 
 
256
  }
257
 
258
  .leaderboard-table th:first-child, .leaderboard-table td:first-child {