chore: fix mobile large font size

This commit is contained in:
Aman Harwara
2023-04-27 18:06:20 +05:30
parent b0cf179a90
commit d1009e368a

View File

@@ -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<EditorFontSize, string> = {
@@ -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()) {