From ecad88e8592d4582a36e5fe643324d8567c6aeb4 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 19:36:50 -0500 Subject: [PATCH] Clip label shine to text bounds (no more eyebrows) --- frontends/web/static/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontends/web/static/style.css b/frontends/web/static/style.css index 9192532..7cd38ba 100644 --- a/frontends/web/static/style.css +++ b/frontends/web/static/style.css @@ -123,6 +123,7 @@ color: #ffe699; position: relative; display: inline-block; + overflow: hidden; } .card .form-label::before { @@ -131,11 +132,11 @@ top: 0; left: -100%; width: 60%; - height: 40%; + height: 45%; background: linear-gradient( 90deg, transparent 0%, - rgba(255, 255, 240, 0.7) 50%, + rgba(255, 255, 255, 0.4) 50%, transparent 100% ); animation: top-shine 4s ease-in-out infinite;