Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update constants.py
Browse files- constants.py +15 -0
constants.py
CHANGED
|
@@ -136,6 +136,11 @@ LONGFORM_TAB_TEXT = """
|
|
| 136 |
"""
|
| 137 |
|
| 138 |
LEADERBOARD_CSS = """
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 139 |
#leaderboard-table th .header-content {
|
| 140 |
white-space: nowrap;
|
| 141 |
}
|
|
@@ -152,6 +157,11 @@ LEADERBOARD_CSS = """
|
|
| 152 |
table-layout: auto !important;
|
| 153 |
}
|
| 154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 155 |
#multilingual-table th .header-content {
|
| 156 |
white-space: nowrap;
|
| 157 |
}
|
|
@@ -172,6 +182,11 @@ LEADERBOARD_CSS = """
|
|
| 172 |
background-color: var(--table-row-focus);
|
| 173 |
}
|
| 174 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 175 |
#longform-table th .header-content {
|
| 176 |
white-space: nowrap;
|
| 177 |
}
|
|
|
|
| 136 |
"""
|
| 137 |
|
| 138 |
LEADERBOARD_CSS = """
|
| 139 |
+
#leaderboard-table th,
|
| 140 |
+
#leaderboard-table td {
|
| 141 |
+
min-width: 70px;
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
#leaderboard-table th .header-content {
|
| 145 |
white-space: nowrap;
|
| 146 |
}
|
|
|
|
| 157 |
table-layout: auto !important;
|
| 158 |
}
|
| 159 |
|
| 160 |
+
#multilingual-table th,
|
| 161 |
+
#multilingual-table td {
|
| 162 |
+
min-width: 70px;
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
#multilingual-table th .header-content {
|
| 166 |
white-space: nowrap;
|
| 167 |
}
|
|
|
|
| 182 |
background-color: var(--table-row-focus);
|
| 183 |
}
|
| 184 |
|
| 185 |
+
#longform-table th,
|
| 186 |
+
#longform-table td {
|
| 187 |
+
min-width: 70px;
|
| 188 |
+
}
|
| 189 |
+
|
| 190 |
#longform-table th .header-content {
|
| 191 |
white-space: nowrap;
|
| 192 |
}
|