From 59b1b7f0f1e045c254e1732620babc5705c2b2c6 Mon Sep 17 00:00:00 2001 From: Ali <010109ali@gmail.com> Date: Mon, 4 May 2026 16:23:22 +0000 Subject: [PATCH] preloader: shrink splash image to 96px Was rendering ~200px (matching Frappe's inline max-width), which felt too large on smaller screens. Override with !important since the template uses inline styling. Co-Authored-By: Claude Opus 4.7 (1M context) --- jey_theme/public/css/shared.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jey_theme/public/css/shared.css b/jey_theme/public/css/shared.css index 88d5b57..03ec351 100644 --- a/jey_theme/public/css/shared.css +++ b/jey_theme/public/css/shared.css @@ -7,7 +7,8 @@ by Frappe once the desk boots, so this only shows during page load. */ .splash img { content: url("/assets/jey_theme/images/preloader.png"); - max-width: 200px; + max-width: 96px !important; + width: 96px !important; height: auto; }