From f380f1afb22da685d0b6528ec597c52181281cfc Mon Sep 17 00:00:00 2001 From: Jori Lallo Date: Wed, 18 Oct 2017 22:42:37 -0700 Subject: [PATCH] Fixes to strong and a --- frontend/components/Editor/Editor.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/components/Editor/Editor.js b/frontend/components/Editor/Editor.js index 74779c25c..6a99e730f 100644 --- a/frontend/components/Editor/Editor.js +++ b/frontend/components/Editor/Editor.js @@ -291,6 +291,10 @@ const StyledEditor = styled(Editor)` position: relative; } + a:hover { + text-decoration: ${({ readOnly }) => (readOnly ? 'underline' : 'none')}; + } + li p { display: inline; margin: 0; @@ -332,6 +336,10 @@ const StyledEditor = styled(Editor)` td { padding: 5px 20px 5px 0; } + + b, strong { + font-weight: 600; + } `; export default MarkdownEditor;