From b5068ad3d5780d98d909870dcaa86cbfeb0b15e8 Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Wed, 3 Apr 2019 17:52:50 +0200 Subject: [PATCH] Fix editor theme --- app/src/components/CodeDiff.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/components/CodeDiff.tsx b/app/src/components/CodeDiff.tsx index bd3363d..aba3cc7 100644 --- a/app/src/components/CodeDiff.tsx +++ b/app/src/components/CodeDiff.tsx @@ -117,6 +117,9 @@ const style = (theme: Theme) => { maxHeight: '200px', marginLeft: '33px !important', backgroundColor: `${CodeBlockColors.background} !important`, + '& span': { + color: CodeBlockColors.text, + }, '& .token.number': { color: CodeBlockColors.numeric, },