From 695bdec9fee925358eeed7c7ab2ee8b7e1c2c6bc Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Thu, 8 Jul 2021 14:41:05 -0700 Subject: [PATCH] Match the thumbnail width and height in in-message images. --- src/platform/web/ui/css/timeline.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/platform/web/ui/css/timeline.css b/src/platform/web/ui/css/timeline.css index 1cf7af27..af2d6c14 100644 --- a/src/platform/web/ui/css/timeline.css +++ b/src/platform/web/ui/css/timeline.css @@ -63,5 +63,6 @@ limitations under the License. } .Timeline_messageBody img { - max-width: 50%; + max-width: 400px; + max-height: 300px; }