From 39962ba5ebae0d07520bf57da2ecc6b28bcff752 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 12 Apr 2025 23:10:55 -0700 Subject: [PATCH] style: Remove internal cell borders from leaderboards table --- aider/website/docs/leaderboards/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/aider/website/docs/leaderboards/index.md b/aider/website/docs/leaderboards/index.md index 49bccb89a..d4277f0f1 100644 --- a/aider/website/docs/leaderboards/index.md +++ b/aider/website/docs/leaderboards/index.md @@ -94,7 +94,11 @@ The model also has to successfully apply all its changes to the source file with table { table-layout: fixed; } + thead { + border-top: 1px solid #ddd; /* Add top border to header */ + } td, th { + border: none; /* Remove internal cell borders */ word-wrap: break-word; overflow-wrap: break-word; }