From 18e56aff653700dc175f5b11458ff080ec9667fc Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Mon, 30 Nov 2020 21:45:48 -0800 Subject: [PATCH] fix: Editable title in sidebar impossible to see in dark mode --- app/components/Sidebar/components/EditableTitle.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/Sidebar/components/EditableTitle.js b/app/components/Sidebar/components/EditableTitle.js index 6efae95c2..a0af7f5ae 100644 --- a/app/components/Sidebar/components/EditableTitle.js +++ b/app/components/Sidebar/components/EditableTitle.js @@ -82,6 +82,7 @@ function EditableTitle({ title, onSubmit, canUpdate }: Props) { const Input = styled.input` margin-left: -4px; + color: ${(props) => props.theme.sidebarText}; background: ${(props) => props.theme.background}; width: calc(100% - 10px); border-radius: 3px;