From 26b0c6e6dae93ec77b5d18b62eb6304f9795b40a Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 11 Mar 2025 12:51:38 -0700 Subject: [PATCH] style: Add mobile-friendly CSS to hide command and edit columns --- aider/website/docs/leaderboards/index.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/aider/website/docs/leaderboards/index.md b/aider/website/docs/leaderboards/index.md index cd142e261..af6344caf 100644 --- a/aider/website/docs/leaderboards/index.md +++ b/aider/website/docs/leaderboards/index.md @@ -88,6 +88,14 @@ The model also has to successfully apply all its changes to the source file with td:nth-child(3), td:nth-child(4) { font-size: 12px; } + + /* Hide command and edit format columns on mobile */ + @media screen and (max-width: 767px) { + th:nth-child(4), td:nth-child(4), /* Command column */ + th:nth-child(5), td:nth-child(5) { /* Edit format column */ + display: none; + } + }