From 010ed1492fe51873fd9c956e2057515ebfd65eff Mon Sep 17 00:00:00 2001 From: Arlind Ukshini Date: Fri, 24 Apr 2026 11:02:40 +0200 Subject: [PATCH] entrance: nudge welcome-backer down and right, clear the logo welcome-backer was overlapping the bottom of the fenja wordmark now that the Innovationsfonden SVG grew to 24px (taller row, lower visual centre). top bumped from +45px to +80px below viewport mid, and transform translate from -50% to -28% so the block sits slightly right of the logo's centreline instead of under it. Co-Authored-By: Claude Opus 4.7 (1M context) --- public/entrance.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/public/entrance.html b/public/entrance.html index 7a8a6ae..d9a908c 100644 --- a/public/entrance.html +++ b/public/entrance.html @@ -153,11 +153,15 @@ with the welcome step (same trigger as the logo above it). */ .welcome-backer { position: fixed; - /* welcome-logo is centred at top:50% with width 280px and h:~46px, - so the bottom edge is ~50% + 23px. This sits ~22px below that. */ - top: calc(50% + 45px); + /* Sits below the fixed welcome-logo. The logo renders ~70px tall + at width:280px, so its bottom edge is ~50% + 35px; this sits + clear of that with enough breathing room not to crowd the + wordmark. Horizontal nudge via the transform pushes the block + slightly right of the logo's centreline so it reads as a + support line rather than a baseline caption. */ + top: calc(50% + 80px); left: 75%; - transform: translate(-50%, 0); + transform: translate(-28%, 0); display: inline-flex; align-items: center; gap: 10px;