From cd3b7386ec28656f5aceeb23b088f95ce9a582c4 Mon Sep 17 00:00:00 2001 From: Krishna Gupta Date: Thu, 15 Feb 2024 16:32:53 +0530 Subject: [PATCH] fix: Chat - Font size is smaller in single backtick code block. Signed-off-by: Krishna Gupta --- src/styles/index.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/styles/index.ts b/src/styles/index.ts index 19f5b791a9af..3b923862ee86 100644 --- a/src/styles/index.ts +++ b/src/styles/index.ts @@ -179,10 +179,9 @@ const webViewStyles = (theme: ThemeColors) => pre: { ...baseCodeTagStyles(theme), - paddingTop: 12, - paddingBottom: 12, - paddingRight: 8, - paddingLeft: 8, + paddingVertical: 8, + paddingHorizontal: 12, + fontSize: 13, fontFamily: FontUtils.fontFamily.platform.MONOSPACE, marginTop: 0, marginBottom: 0,