From da9688866985b6eaf51748e74aefae6438fb5b62 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 13 Apr 2025 00:41:44 -0700 Subject: [PATCH] style: Hide command column on small screens in leaderboards --- 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 8abd681a8..d712abe58 100644 --- a/aider/website/docs/leaderboards/index.md +++ b/aider/website/docs/leaderboards/index.md @@ -102,13 +102,13 @@ Aider works best with high-scoring models, though it [can connect to almost any word-wrap: break-word; overflow-wrap: break-word; } - td:nth-child(4) { /* Command column */ - font-size: 12px; + td:nth-child(5) { /* Command column */ + font-size: 12px; /* Keep font size adjustment for command column if desired, or remove */ } /* Hide command column 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) { /* Command column */ display: none; } }