From 361f98e437b345e61cae2576471fff6e70617bf3 Mon Sep 17 00:00:00 2001 From: ClovertaTheTrilobita Date: Wed, 25 Mar 2026 19:41:06 +0200 Subject: [PATCH] restrict img width --- src/styles/global.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/styles/global.css b/src/styles/global.css index b049845..b13b67a 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -134,4 +134,10 @@ html.dark { .dark a:hover, .dark a:focus { color: #c2deff; +} + +img { + max-width: 100%; + height: auto; + display: block; } \ No newline at end of file