From 1518211a17bc23b0eb80b414bf6755bf9ac9a98b Mon Sep 17 00:00:00 2001 From: Ricardo Mancinas Date: Wed, 12 Aug 2026 11:39:45 -0700 Subject: [PATCH] fix(docs): keep long one-liners from scrolling under the copy button Co-Authored-By: Claude Opus 5 --- public/docs.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/docs.html b/public/docs.html index 6840907..14fd124 100644 --- a/public/docs.html +++ b/public/docs.html @@ -18,6 +18,9 @@ .os-panel[hidden] { display: none; } .copy-wrap { position: relative; } .copy-wrap button { position: absolute; top: 8px; right: 8px; } + /* The button floats over the block, so keep the long one-liners from + scrolling underneath it. */ + .copy-wrap pre.code { padding-right: 76px; }