From 0d7917c47fed40c80fb2f381d22bb9d67ea8b967 Mon Sep 17 00:00:00 2001 From: chenlongbo Date: Wed, 21 Feb 2024 22:06:20 +0800 Subject: [PATCH] chore: change paragraph style --- packages/typography/src/paragraph-style.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/typography/src/paragraph-style.ts b/packages/typography/src/paragraph-style.ts index c91d79c67..6263d245c 100644 --- a/packages/typography/src/paragraph-style.ts +++ b/packages/typography/src/paragraph-style.ts @@ -4,12 +4,12 @@ export function applyParagraphContainer(indent: boolean): SerializedStyles { if (indent) { return css` text-indent: 2em; - font-size: 12px; + font-size: 14px; line-height: 24px; ` } else { return css` - font-size: 12px; + font-size: 14px; line-height: 24px; ` }