From e39eef1ed7407f43ae68cdb8abe19f73efab9c69 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 12 Apr 2025 23:26:21 -0700 Subject: [PATCH] style: Align ticks with bottom edge of leaderboard bars --- aider/website/docs/leaderboards/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/website/docs/leaderboards/index.md b/aider/website/docs/leaderboards/index.md index d0c2e0e1b..f1fd026bf 100644 --- a/aider/website/docs/leaderboards/index.md +++ b/aider/website/docs/leaderboards/index.md @@ -125,8 +125,8 @@ 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(-50%); - height: 10px; /* Match the height of the bar */ + transform: translateY(13px); /* Position at bottom of bar (36px/2 + 10px/2) */ + height: 10px; /* Short tick */ width: 1px; background-color: rgba(170, 170, 170, 0.2); z-index: 2; /* Above the bar but below the text */