Spaces:
Running
Running
Fix
Browse files
app.py
CHANGED
|
@@ -95,35 +95,35 @@ footer {visibility: hidden}
|
|
| 95 |
background-color: var(--table-even-background-fill);
|
| 96 |
}
|
| 97 |
|
| 98 |
-
.leaderboard-table th:first-child,
|
| 99 |
position: sticky;
|
| 100 |
left: 0;
|
| 101 |
z-index: 1;
|
| 102 |
background-color: inherit;
|
| 103 |
}
|
| 104 |
|
| 105 |
-
.leaderboard-table th:nth-child(2),
|
| 106 |
position: sticky;
|
| 107 |
left: var(--cell-width-0);
|
| 108 |
z-index: 1;
|
| 109 |
background-color: inherit;
|
| 110 |
}
|
| 111 |
|
| 112 |
-
.leaderboard-table th:nth-child(3),
|
| 113 |
position: sticky;
|
| 114 |
left: calc(var(--cell-width-0) + var(--cell-width-1));
|
| 115 |
z-index: 1;
|
| 116 |
background-color: inherit;
|
| 117 |
}
|
| 118 |
|
| 119 |
-
.leaderboard-table th:nth-child(4),
|
| 120 |
position: sticky;
|
| 121 |
left: calc(var(--cell-width-0) + var(--cell-width-1) + var(--cell-width-2));
|
| 122 |
z-index: 1;
|
| 123 |
background-color: inherit;
|
| 124 |
}
|
| 125 |
|
| 126 |
-
.leaderboard-table th:nth-child(5),
|
| 127 |
position: sticky;
|
| 128 |
left: calc(var(--cell-width-0) + var(--cell-width-1) + var(--cell-width-2) + var(--cell-width-3));
|
| 129 |
z-index: 1;
|
|
|
|
| 95 |
background-color: var(--table-even-background-fill);
|
| 96 |
}
|
| 97 |
|
| 98 |
+
.leaderboard-table th:first-child, .leaderboard-table td:first-child {
|
| 99 |
position: sticky;
|
| 100 |
left: 0;
|
| 101 |
z-index: 1;
|
| 102 |
background-color: inherit;
|
| 103 |
}
|
| 104 |
|
| 105 |
+
.leaderboard-table th:nth-child(2), .leaderboard-table td:nth-child(2) {
|
| 106 |
position: sticky;
|
| 107 |
left: var(--cell-width-0);
|
| 108 |
z-index: 1;
|
| 109 |
background-color: inherit;
|
| 110 |
}
|
| 111 |
|
| 112 |
+
.leaderboard-table th:nth-child(3), .leaderboard-table td:nth-child(3) {
|
| 113 |
position: sticky;
|
| 114 |
left: calc(var(--cell-width-0) + var(--cell-width-1));
|
| 115 |
z-index: 1;
|
| 116 |
background-color: inherit;
|
| 117 |
}
|
| 118 |
|
| 119 |
+
.leaderboard-table th:nth-child(4), .leaderboard-table td:nth-child(4) {
|
| 120 |
position: sticky;
|
| 121 |
left: calc(var(--cell-width-0) + var(--cell-width-1) + var(--cell-width-2));
|
| 122 |
z-index: 1;
|
| 123 |
background-color: inherit;
|
| 124 |
}
|
| 125 |
|
| 126 |
+
.leaderboard-table th:nth-child(5), .leaderboard-table td:nth-child(5) {
|
| 127 |
position: sticky;
|
| 128 |
left: calc(var(--cell-width-0) + var(--cell-width-1) + var(--cell-width-2) + var(--cell-width-3));
|
| 129 |
z-index: 1;
|