From 9ab204d0be1565e30246edfeacaf4f2ef3bbc5f0 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Thu, 27 Jun 2024 02:59:02 +0400 Subject: [PATCH] Set max width for img to 100% to prevent overflows when an image doesn't fit. --- web/assets/css/main.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/assets/css/main.css b/web/assets/css/main.css index e5b895d..b8742dd 100755 --- a/web/assets/css/main.css +++ b/web/assets/css/main.css @@ -80,6 +80,9 @@ h3 { h3 { font-size: 1.05rem; } +img { max-width: 100%; } + + table { border-collapse: collapse; margin-bottom: .5rem; }