From 654e4c9ce638ee26c186b80711171ad38a71d4bb Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Mon, 27 Nov 2023 23:21:14 -0500 Subject: [PATCH] fix: Update diff emails too short in some email clients --- shared/styles/globals.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/styles/globals.ts b/shared/styles/globals.ts index a1c919b17..60fbafcfc 100644 --- a/shared/styles/globals.ts +++ b/shared/styles/globals.ts @@ -17,7 +17,7 @@ export default createGlobalStyle` html, body { width: 100%; - height: ${(props) => (props.staticHTML ? "0" : "100%")}; + ${(props) => (props.staticHTML ? "" : "height: 100%;")} margin: 0; padding: 0; print-color-adjust: exact;