Remove all styling
Hello, How can I remove all styles that are applied to the toolbar and the editor, as well as those ugly generated class names? I dont't want the editor nor the toolbar to have any appearance outside of what I define.
Thanks!
Send a pull request to make this an option. Currently, the styles are statically imported so there's no way to build without them.
There is an open issue to move away from CSS modules (the current approach to styling) and implement CSS-in-JS using one of the popular modules like JSS or Aphrodite. This would make it easier to theme and even completely turn on/off styling. I'd be open to a pull request for both.
:+1: It would also help avoid the webpack dependency which was a dealbreaker for @jooj123 in #218
As someone looking into this, please do not place more dependencies on this already large library. It would be best to simply allow the developer to specify the class names and set our own style via external css or as another option just pass in a style for each component. Pulling in Aphrodite as a dependency would be a showstopper for us.
Are there any updates to this feature?