From 4c45f0e44bd2b7055f39ed3cb9c260c006501437 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 12 Apr 2025 23:30:28 -0700 Subject: [PATCH] style: Improve leaderboard bar chart tick visibility --- aider/website/docs/leaderboards/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aider/website/docs/leaderboards/index.md b/aider/website/docs/leaderboards/index.md index f1fd026bf..5d2b1688c 100644 --- a/aider/website/docs/leaderboards/index.md +++ b/aider/website/docs/leaderboards/index.md @@ -125,10 +125,10 @@ The model also has to successfully apply all its changes to the source file with .percent-tick, .cost-tick { position: absolute; top: 50%; - transform: translateY(13px); /* Position at bottom of bar (36px/2 + 10px/2) */ - height: 10px; /* Short tick */ + transform: translateY(10px); + height: 8px; /* Short tick */ width: 1px; - background-color: rgba(170, 170, 170, 0.2); + background-color: rgba(170, 170, 170, 0.5); z-index: 2; /* Above the bar but below the text */ } .bar-viz {