From b49c8ebf601ececb2f79027b220c98e17ecb4650 Mon Sep 17 00:00:00 2001 From: Jaiwanth Date: Fri, 20 Aug 2021 17:12:52 +0530 Subject: [PATCH] Increase max_width for exported html --- src/utils/exportUtils/exportCSS.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/utils/exportUtils/exportCSS.ts b/src/utils/exportUtils/exportCSS.ts index 7f83711fc2..46024590a7 100644 --- a/src/utils/exportUtils/exportCSS.ts +++ b/src/utils/exportUtils/exportCSS.ts @@ -133,6 +133,10 @@ const getExportCSS = async (): Promise => { white-space: nowrap; overflow: hidden; } + + .mx_MatrixChat{ + max_width: 100%; + } `; return CSS + customCSS;