From 7d17c4a7a2e70f7930281ca540726e060481dcb9 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sat, 9 Sep 2023 07:23:26 +0000 Subject: [PATCH] fix font size for chromium --- src/options/components/TextArea.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/options/components/TextArea.tsx b/src/options/components/TextArea.tsx index b848fbb6..f5fa578f 100644 --- a/src/options/components/TextArea.tsx +++ b/src/options/components/TextArea.tsx @@ -20,6 +20,7 @@ const Container = styled.div` const StyledPre = styled.pre` position: absolute; + font-size: 14px; width: calc(100% - ${padding}px * 2); height: calc(100% - ${padding}px * 2); margin: 0; @@ -28,6 +29,7 @@ const StyledPre = styled.pre` const StyledTextarea = styled.textarea` position: absolute; + font-size: 14px; width: calc(100% - ${padding}px * 2); height: calc(100% - ${padding}px * 2); padding: 0;