Fixes to strong and a
This commit is contained in:
@ -291,6 +291,10 @@ const StyledEditor = styled(Editor)`
|
|||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: ${({ readOnly }) => (readOnly ? 'underline' : 'none')};
|
||||||
|
}
|
||||||
|
|
||||||
li p {
|
li p {
|
||||||
display: inline;
|
display: inline;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -332,6 +336,10 @@ const StyledEditor = styled(Editor)`
|
|||||||
td {
|
td {
|
||||||
padding: 5px 20px 5px 0;
|
padding: 5px 20px 5px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
b, strong {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export default MarkdownEditor;
|
export default MarkdownEditor;
|
||||||
|
Reference in New Issue
Block a user