From 7d9d1a9869309657134d2041106907fb500ce0b0 Mon Sep 17 00:00:00 2001 From: chylex Date: Mon, 31 Oct 2016 01:18:37 +0100 Subject: [PATCH] Fix max width of image thumbnails in renderer --- src/renderer/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/style.css b/src/renderer/style.css index b7842e6..e60ace5 100644 --- a/src/renderer/style.css +++ b/src/renderer/style.css @@ -207,7 +207,7 @@ body { .message .thumbnail img { max-height: 320px; - max-width: calc(100vw - 299px); + max-width: calc(100% - 20px); border-radius: 3px; }