diff options
| author | soryu-co <bot@soryu.co> | 2026-05-06 15:49:33 +0000 |
|---|---|---|
| committer | soryu-co <bot@soryu.co> | 2026-05-06 15:49:33 +0000 |
| commit | e26f43a237059222076076ec12684af8e05e60c7 (patch) | |
| tree | 7cd6c1c2595190e46addbaa4f153b7f603e52c77 | |
| parent | ca49bd90911adbed5c2ccf24221509f7ab9e5a7e (diff) | |
| download | soryu-e26f43a237059222076076ec12684af8e05e60c7.tar.gz soryu-e26f43a237059222076076ec12684af8e05e60c7.zip | |
Remove box-shadow halo around Mission/MAKIMA image bounding boxes
| -rw-r--r-- | frontend/src/styles/heisei.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/frontend/src/styles/heisei.css b/frontend/src/styles/heisei.css index 80c9c47..951002e 100644 --- a/frontend/src/styles/heisei.css +++ b/frontend/src/styles/heisei.css @@ -446,7 +446,7 @@ body { background: var(--hz-night); color: var(--hz-ink); } border-radius: 0; /* no plate corners — image floats on backdrop */ /* SVG already draws its own hairline frame + corner brackets at the viewBox edge — drop the ring outline so we don't double-frame. */ - box-shadow: 0 24px 60px -24px rgba(8, 10, 24, 0.85); + box-shadow: none; /* no outward halo around bounding box */ filter: none; /* tactical SVG renders flat */ height: clamp(180px, 36vh, 360px); width: 100%; @@ -488,8 +488,8 @@ body { background: var(--hz-night); color: var(--hz-ink); } object-position: center; padding: 0; border-radius: 0; /* no rounded plate corners */ - /* SVG owns its frame — keep only the soft drop-shadow for elevation */ - box-shadow: 0 24px 60px -24px rgba(8, 10, 24, 0.85); + /* No box-shadow — outward halo on bounding box was bleeding past the SVG */ + box-shadow: none; } /* Right-column text: no accent rule — keep the layout clean. The SVG image on the left supplies all the framing. */ @@ -550,7 +550,7 @@ body { background: var(--hz-night); color: var(--hz-ink); } border: 0; border-radius: 0; background: transparent; /* no dark plate behind small SVG icon */ - box-shadow: 0 24px 60px -24px rgba(8, 10, 24, 0.85); + box-shadow: none; /* no outward halo around bounding box */ } /* ---------------------------------------------------------------- |
