Reputation: 83
I want to style react-rte using a CSS file, but was unable to do so.
The RichTextEditor always injects inline styles into bottom of HEAD section, which overriden my class styling.
Upvotes: 3
Views: 5661
Reputation: 61
Ass seen in EditorDemo.js you can define classes for toolbar and editor
<RichTextEditor
toolbarClassName="demo-toolbar"
editorClassName="demo-editor"
/>
Upvotes: 5