Spaces:
Runtime error
Runtime error
Fix strange blinking rows and font-family in all tables
Browse files
app.py
CHANGED
@@ -246,18 +246,13 @@ custom_css = """
|
|
246 |
|
247 |
footer {visibility: hidden}
|
248 |
|
249 |
-
|
250 |
-
background-color: var(--table-even-background-fill)
|
251 |
font-family: "IBM Plex Mono";
|
252 |
}
|
253 |
|
254 |
-
.
|
255 |
-
background-color: var(--table-
|
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 {
|