From 955e3c8d5865b7b7e92295f4287f032074c8e2e2 Mon Sep 17 00:00:00 2001 From: Michael Victory Date: Thu, 25 Jun 2026 21:37:12 -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 dcc4666..abab0b7 100644 --- a/style.css +++ b/style.css @@ -27,6 +27,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; }