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) <noreply@anthropic.com>
This commit is contained in:
Ali 2026-05-04 16:23:22 +00:00
parent 0753a36275
commit 59b1b7f0f1
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,8 @@
by Frappe once the desk boots, so this only shows during page load. */ by Frappe once the desk boots, so this only shows during page load. */
.splash img { .splash img {
content: url("/assets/jey_theme/images/preloader.png"); content: url("/assets/jey_theme/images/preloader.png");
max-width: 200px; max-width: 96px !important;
width: 96px !important;
height: auto; height: auto;
} }