From 3dd3c13c4bade2abd5fbf07954564fe1087f0dac Mon Sep 17 00:00:00 2001 From: Syco21 Date: Fri, 15 May 2026 22:45:24 +0200 Subject: [PATCH] Enlarge sheet handle hitbox and pill size --- src/index.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/index.css b/src/index.css index 9ce0c64..c29c7ac 100644 --- a/src/index.css +++ b/src/index.css @@ -117,16 +117,18 @@ body { } .sheet-handle-area { width: 100%; - padding: 12px 0; + padding: 16px 0 20px; display: flex; justify-content: center; cursor: grab; + flex-shrink: 0; } .sheet-handle { - width: 36px; - height: 4px; - background: #444; - border-radius: 2px; + width: 48px; + height: 5px; + background: #555; + border-radius: 3px; + pointer-events: none; } @keyframes slideUp { from { transform: translateY(100%); }