From f9d45dcde9fcbaf126d167725c902a41e1012b23 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 4 Apr 2026 08:24:20 -0400 Subject: [PATCH] =?UTF-8?q?Website:=20sticky=20oscilloscope=20=E2=80=94=20?= =?UTF-8?q?stays=20on=20screen=20when=20scrolling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- site/index.html | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/site/index.html b/site/index.html index 3c0d9a2..98e24df 100644 --- a/site/index.html +++ b/site/index.html @@ -260,15 +260,21 @@ /* Oscilloscope */ .visualizer-wrap { - max-width: 700px; - margin: 0 auto; - padding: 0 20px; + position: sticky; + top: 0; + z-index: 50; + background: #0a0a0a; + max-width: 100%; + padding: 8px 20px; + border-bottom: 1px solid #1a1a1a; } #oscilloscope { width: 100%; - height: 80px; + height: 60px; display: block; + max-width: 700px; + margin: 0 auto; } /* Streaming links */