From ca611eeac7a865ac36f80a884458aea31e68b7cb Mon Sep 17 00:00:00 2001 From: Michael Victory Date: Thu, 25 Jun 2026 21:37:14 -0700 Subject: [PATCH] Silence overflow:visible deprecation on replaced elements (overflow: clip) Co-Authored-By: Claude Opus 4.8 --- style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/style.css b/style.css index ff39188..f9caab3 100644 --- a/style.css +++ b/style.css @@ -28,6 +28,7 @@ } * { box-sizing: border-box; } +img, video, canvas { overflow: clip; } html { scroll-behavior: smooth; } @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } } [id] { scroll-margin-top: 84px; }