From 97ec2f6ee65246e300fad3616dd181c72577f034 Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Mon, 13 Apr 2026 14:28:53 -0400 Subject: [PATCH] cropped & centered Sig icon placeholder in #id_tray_* apparatus --- src/static_src/scss/_tray.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/static_src/scss/_tray.scss b/src/static_src/scss/_tray.scss index a1a14c7..7bc640a 100644 --- a/src/static_src/scss/_tray.scss +++ b/src/static_src/scss/_tray.scss @@ -147,6 +147,21 @@ $handle-r: 1rem; } } +.tray-sig-card { + padding: 0; + overflow: hidden; + background: transparent; + + img { + display: block; + width: 100%; + height: 100%; + object-fit: cover; + object-position: center; + transform: scale(1.4); // crop SVG's internal margins + } +} + @keyframes tray-wobble { 0%, 100% { transform: translateX(0); } 20% { transform: translateX(-8px); }