kevinpro
update
4bdbb91
raw
history blame contribute delete
740 Bytes
# css.py 文件
CUSTOM_CSS = """
#leaderboard-table .dataframe th:nth-child(1),
#leaderboard-table .dataframe td:nth-child(1) {
width: 150px; /* Model column width */
}
#leaderboard-table .dataframe th:nth-child(2),
#leaderboard-table .dataframe td:nth-child(2) {
width: 100px; /* MSVAMP column width */
}
#leaderboard-table .dataframe th:nth-child(3),
#leaderboard-table .dataframe td:nth-child(3) {
width: 100px; /* MGSM column width */
}
#leaderboard-table .dataframe th:nth-child(4),
#leaderboard-table .dataframe td:nth-child(4) {
width: 100px; /* MNum column width */
}
#leaderboard-table .dataframe th:nth-child(5),
#leaderboard-table .dataframe td:nth-child(5) {
width: 200px; /* Notes column width */
}
"""