From c6769f92571e3f890f46f4fbe085c284002d19c7 Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sun, 22 Feb 2026 17:39:51 -0500 Subject: [PATCH] Fix back button width and add border to leaderboard header Override width:100% from .btn base class with width:auto on both back buttons. Add padding-bottom and border-bottom to leaderboard header to match rules page styling. Co-Authored-By: Claude Opus 4.6 --- client/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/style.css b/client/style.css index d2132a4..3c46f19 100644 --- a/client/style.css +++ b/client/style.css @@ -2858,6 +2858,7 @@ input::placeholder { left: 0; top: 50%; transform: translateY(-50%); + width: auto; padding: 4px 12px; font-size: 0.8rem; background: transparent; @@ -3521,6 +3522,8 @@ input::placeholder { position: relative; text-align: center; margin-bottom: 20px; + padding-bottom: 20px; + border-bottom: 2px solid rgba(244, 164, 96, 0.3); } .leaderboard-header h1 { @@ -3541,6 +3544,7 @@ input::placeholder { left: 0; top: 50%; transform: translateY(-50%); + width: auto; padding: 4px 12px; font-size: 0.8rem; background: transparent;