From 8fec859eeef1732914474c7fa88cd0254cd940e5 Mon Sep 17 00:00:00 2001 From: Innei Date: Fri, 26 Jul 2024 14:28:15 +0800 Subject: [PATCH] fix: table font size Signed-off-by: Innei --- src/renderer/src/styles/tailwind.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/renderer/src/styles/tailwind.css b/src/renderer/src/styles/tailwind.css index 502043cd7..9fdacebed 100644 --- a/src/renderer/src/styles/tailwind.css +++ b/src/renderer/src/styles/tailwind.css @@ -69,3 +69,9 @@ @apply text-theme-foreground; } } + +.prose { + table * { + font-size: 1rem; + } +}