From 76921ac740240447771ec827b148b903596a547d Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Thu, 29 Sep 2022 12:27:11 +0200 Subject: [PATCH] limit expanded image width on desktop to 80% --- files/assets/css/main.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/files/assets/css/main.css b/files/assets/css/main.css index 8fe8f9ddd..993b2fd89 100644 --- a/files/assets/css/main.css +++ b/files/assets/css/main.css @@ -6287,3 +6287,9 @@ div.markdown { .bug { pointer-events: none !important; } + +@media (min-width: 768px) { + #desktop-expanded-image { + max-width: 80% !important; + } +} \ No newline at end of file