Skip to content

Commit a2b3058

Browse files
committed
fix: css
1 parent 270a960 commit a2b3058

6 files changed

+10
-10
lines changed

build/asset-manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"files": {
33
"main.css": "./static/css/main.be588df3.css",
4-
"main.js": "./static/js/main.e52d421e.js",
4+
"main.js": "./static/js/main.34e9ad60.js",
55
"index.html": "./index.html",
66
"main.be588df3.css.map": "./static/css/main.be588df3.css.map",
7-
"main.e52d421e.js.map": "./static/js/main.e52d421e.js.map"
7+
"main.34e9ad60.js.map": "./static/js/main.34e9ad60.js.map"
88
},
99
"entrypoints": [
1010
"static/css/main.be588df3.css",
11-
"static/js/main.e52d421e.js"
11+
"static/js/main.34e9ad60.js"
1212
]
1313
}

build/leaderboard.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en"><head><title>LiveCodeBench Leaderboard</title><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="LiveCodeBench Leaderboard"/><link rel="stylesheet" href="bootstrap.min.css"/><link rel="stylesheet" href="./css/bulma.min.css"/><link rel="stylesheet" href="./css/bulma-carousel.min.css"/><link rel="stylesheet" href="./css/bulma-slider.min.css"/><link rel="stylesheet" href="./css/fontawesome.all.min.css"/><link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css"/><link rel="stylesheet" href="./css/index.css"/><link rel="icon" href="./images/favicon.svg"/><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script><script defer="defer" src="./js/fontawesome.all.min.js"></script><script src="./js/bulma-carousel.min.js"></script><script src="./js/bulma-slider.min.js"></script><script src="./js/index.js"></script><script defer="defer" src="./static/js/main.e52d421e.js"></script><link href="./static/css/main.be588df3.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1+
<!doctype html><html lang="en"><head><title>LiveCodeBench Leaderboard</title><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="LiveCodeBench Leaderboard"/><link rel="stylesheet" href="bootstrap.min.css"/><link rel="stylesheet" href="./css/bulma.min.css"/><link rel="stylesheet" href="./css/bulma-carousel.min.css"/><link rel="stylesheet" href="./css/bulma-slider.min.css"/><link rel="stylesheet" href="./css/fontawesome.all.min.css"/><link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css"/><link rel="stylesheet" href="./css/index.css"/><link rel="icon" href="./images/favicon.svg"/><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script><script defer="defer" src="./js/fontawesome.all.min.js"></script><script src="./js/bulma-carousel.min.js"></script><script src="./js/bulma-slider.min.js"></script><script src="./js/index.js"></script><script defer="defer" src="./static/js/main.34e9ad60.js"></script><link href="./static/css/main.be588df3.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

build/static/js/main.e52d421e.js renamed to build/static/js/main.34e9ad60.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/static/js/main.e52d421e.js.map renamed to build/static/js/main.34e9ad60.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/LeaderboardComp.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -237,15 +237,15 @@ const Leaderboard = React.memo(function LeaderboardComponent(props: any) {
237237

238238
message += "<br><br>We estimate cutoff dates based on release date and performance variation. Models highlighted in red are likely contaminated on some fraction of the problems in the given time-window. Feel free to adjust the slider to see the leaderboard at different time windows. Please offer feedback if you find any issues!"
239239

240-
message += "<br><br>Announcements: 1. We have made revisions to our official autograder. In case you are performing local evaluations, please use the latest codebase. 2. We have been updating the problem difficulty distribution making it more challenging aligned with the model capability improvements. A drop in performance towards later months is expected."
240+
message += "<br><br>Announcements: <br>1. We have made revisions to our official autograder, fixing some unhandled cases. In case you are performing local evaluations, please use the latest codebase. <br>2. We have been introducing larger fraction of difficult problems for the more recent releases in lines with model capability improvements. A drop in performance in the later months is expected."
241241

242242

243243

244244
return (
245245
<div style={{ width: "100%", height: "100%" }}>
246246
<ThemeProvider theme={muiTheme}>
247247
<CssBaseline />
248-
<div style={{ display: "flex", justifyContent: "center" }}>
248+
<div style={{ display: "flex", justifyContent: "left", textAlign: "left" }}>
249249
<b>{message.split("<br>").map((line, index) => (
250250
<React.Fragment key={index}>
251251
{line}

0 commit comments

Comments
 (0)