From ee7a194bc1c426dace4c68e008c6d41de4df1317 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 6 Mar 2026 08:36:14 -0500 Subject: [PATCH] Change height of the "Letter Rip" button to match the height of tiles Prior to this change, the appearance of this button was causing the rack to grow vertically, which was distracting. --- letterrip/letterrip.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/letterrip/letterrip.css b/letterrip/letterrip.css index 2c4a6fe..36e7dd6 100644 --- a/letterrip/letterrip.css +++ b/letterrip/letterrip.css @@ -66,7 +66,8 @@ /* "Letter Rip" button appears inside the rack when all tiles are placed and all words are valid. */ .letter-rip-btn { - padding: 0.5em 1.5em; + height: 44px; + padding: 0 1.5em; background: #27ae60; border: 2px solid #27ae60; border-radius: 6px; -- 2.45.2