From 81fe3f985e33f10fdf62a6bf2ec7fce124257881 Mon Sep 17 00:00:00 2001 From: CLDXiang <417198670@qq.com> Date: Mon, 8 Mar 2021 22:11:20 +0800 Subject: [PATCH] fix(Phonetic): fix phonetic color in dark mode (#98) --- src/components/Phonetic/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Phonetic/index.tsx b/src/components/Phonetic/index.tsx index 2a7b5d66..ff114c91 100644 --- a/src/components/Phonetic/index.tsx +++ b/src/components/Phonetic/index.tsx @@ -7,9 +7,9 @@ export type PhoneticProps = { const Phonetic: React.FC = ({ usphone, ukphone }) => { return ( -
+
{usphone.length > 1 && {`US: [${usphone}]`}} - {ukphone.length > 1 && {`UK:[${ukphone}]`}} + {ukphone.length > 1 && {`UK: [${ukphone}]`}}
) }