From 818dfa3882cb434038abc123ed74ca08d49df087 Mon Sep 17 00:00:00 2001 From: gsinghpal Date: Sat, 23 May 2026 22:06:17 -0400 Subject: [PATCH] fix(shopfloor): bigger logo frame on the tablet lock screen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit User feedback after live testing: the 84px logo frame felt too small and the image inside used only a fraction of the frame area. Bumped the frame to 140px (1.67x) — image scales with the container via the existing max-width/max-height: 100% rule. Proportional adjustments to padding (14→18), border-radius (20→28), margin-bottom (12→16), and the letter-mark placeholder font (32→52). SCSS-only change. Asset cache cleared (3 stale attachments). Co-Authored-By: Claude Opus 4.7 (1M context) --- .../static/src/scss/tablet_lock.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fusion_plating/fusion_plating_shopfloor/static/src/scss/tablet_lock.scss b/fusion_plating/fusion_plating_shopfloor/static/src/scss/tablet_lock.scss index 2b5b00e8..9fed7bee 100644 --- a/fusion_plating/fusion_plating_shopfloor/static/src/scss/tablet_lock.scss +++ b/fusion_plating/fusion_plating_shopfloor/static/src/scss/tablet_lock.scss @@ -30,10 +30,10 @@ .o_fp_lock_logo_frame { display: inline-flex; align-items: center; justify-content: center; - width: 84px; height: 84px; - border-radius: 20px; - margin-bottom: 12px; - padding: 14px; + width: 140px; height: 140px; + border-radius: 28px; + margin-bottom: 16px; + padding: 18px; box-sizing: border-box; background: $lock-frame-bg; border: 1px solid $lock-frame-border; @@ -48,10 +48,10 @@ } .o_fp_lock_logo_placeholder { - width: 100%; height: 100%; border-radius: 14px; + width: 100%; height: 100%; border-radius: 20px; background: linear-gradient(135deg, #f0a500, #ff6b00); display: inline-flex; align-items: center; justify-content: center; - font-size: 32px; font-weight: 900; color: #1a1d21; + font-size: 52px; font-weight: 900; color: #1a1d21; } .o_fp_lock_logo_text {