From fbaaa08ec73985648e4365feec5bf8fe8b1a1182 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sat, 11 Apr 2020 09:27:14 -0700 Subject: [PATCH] closes #1230 --- app/scenes/Document/components/Editor.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/scenes/Document/components/Editor.js b/app/scenes/Document/components/Editor.js index 2253aca57..4025d5902 100644 --- a/app/scenes/Document/components/Editor.js +++ b/app/scenes/Document/components/Editor.js @@ -103,6 +103,9 @@ const Title = styled('input')` line-height: 1.25; margin-top: 1em; margin-bottom: 0.5em; + text: ${props => props.theme.text}; + background: ${props => props.theme.background}; + transition: ${props => props.theme.backgroundTransition}; margin-left: ${props => (props.offsetLeft ? '-1.2em' : 0)}; color: ${props => props.theme.text}; font-size: 2.25em;