From b3549637fe366d3814fa062217c37792dc3b10d3 Mon Sep 17 00:00:00 2001 From: Debajyoti Halder Date: Tue, 20 Oct 2020 10:44:14 +0530 Subject: [PATCH] fix: Dark mode inline code styling fixed #1593 (#1597) background changed to props.theme.codeBackground --- app/scenes/Settings/Slack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scenes/Settings/Slack.js b/app/scenes/Settings/Slack.js index bb3b550c..1e58d1e7 100644 --- a/app/scenes/Settings/Slack.js +++ b/app/scenes/Settings/Slack.js @@ -136,7 +136,7 @@ const ListItem = styled.li` const Code = styled.code` padding: 4px 6px; margin: 0 2px; - background: #eaebea; + background: ${(props) => props.theme.codeBackground}; border-radius: 4px; `;