From d1009e368a18c3fb0665b165fb7a451900a3a784 Mon Sep 17 00:00:00 2001 From: Aman Harwara Date: Thu, 27 Apr 2023 18:06:20 +0530 Subject: [PATCH] chore: fix mobile large font size --- packages/web/src/javascripts/Utils/getPlaintextFontSize.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web/src/javascripts/Utils/getPlaintextFontSize.tsx b/packages/web/src/javascripts/Utils/getPlaintextFontSize.tsx index b94d0dc25..3955fc61d 100644 --- a/packages/web/src/javascripts/Utils/getPlaintextFontSize.tsx +++ b/packages/web/src/javascripts/Utils/getPlaintextFontSize.tsx @@ -15,7 +15,7 @@ export const getPlaintextFontSize = (key: EditorFontSize): string => { Small: 'text-editor', Normal: 'text-lg', Medium: 'text-xl', - Large: 'text-xl2', + Large: 'text-2xl', } const tabletMapping: Record = { @@ -23,7 +23,7 @@ export const getPlaintextFontSize = (key: EditorFontSize): string => { Small: 'text-editor', Normal: 'text-base', Medium: 'text-xl', - Large: 'text-xl2', + Large: 'text-2xl', } if (isTabletScreen()) {