From 8f715c5cfc40b553ba25f2da27e14bda7dea4aea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yannik=20R=C3=B6del?= Date: Mon, 20 Jun 2022 15:45:52 +0200 Subject: [PATCH] Fix mobile view for large image links --- styles/components/_markup.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/styles/components/_markup.scss b/styles/components/_markup.scss index 9d189d7..b6ec0e4 100644 --- a/styles/components/_markup.scss +++ b/styles/components/_markup.scss @@ -128,7 +128,8 @@ blockquote { > p:only-child > a:only-child > img:only-child { display: block; - max-width: 30rem; + max-width: 100%; + max-height: 60rem; margin: 0 auto; } }