From c01de466dfba24ddd8c305a94a4b16a456d67144 Mon Sep 17 00:00:00 2001 From: ministicraft Date: Tue, 14 Apr 2026 01:00:54 +0200 Subject: [PATCH] fix: consistent tool logo placement across slides - Use px instead of em so position doesn't shift with font size - Explicitly set position:relative on sections for reliable anchoring Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 39a6623..d0b7d6f 100644 --- a/index.html +++ b/index.html @@ -32,6 +32,7 @@ .reveal .slides section { text-align: left; border-top: 6px solid var(--strip-color); + position: relative; } .reveal h1, .reveal h2 { @@ -63,8 +64,8 @@ .slide-logo { position: absolute; - bottom: 0.6em; - right: 0.8em; + bottom: 12px; + right: 16px; width: 40px; height: 40px; opacity: 0.8;