Describe the bug
When you want to customize the editor you can pass classes to EditorContent but that will style the container itself. When you want to style the editable div you have to work with .ProseMirror CSS class. That's fine until you try to edit and tweat that class inside a <style scoped> tag on a Vue SFC.
Steps to Reproduce / Codesandbox Example
Steps to reproduce the behavior:
App.vue<style>Fork this or create a new Codesandbox replicating your error
https://codesandbox.io/s/tiptap-scoped-style-bug-rnlhs
Expected behavior
.ProseMirror classes should behave equally regardless of the style scope (at least this is what I think it should happen)
Screenshots
Codesanbox is enough
Environment
This is expected behaviour of Vue.
To style child components in scoped style tags you would have to use deep selectors (Link to Docs)
```html
.ProseMirror { /* ... / }
/deep/ .ProseMirror { / ... / }
::v-deep .ProseMirror { / ... */ }
For me only the first one worked in your Codesandbox example.
hope this helps :)
That's actually pretty neat. Shame on me on the missing doc part, that happens when you use tools without instructions (vue-loader in this case) 馃槄
Update: Confirm, it works. The /deep/ and ::v-deep are useful when you are writing SASS or LESS css, for normal CSS >>> it's fine.
Most helpful comment
This is expected behaviour of Vue.
To style child components in scoped style tags you would have to use deep selectors (Link to Docs)
```html
For me only the first one worked in your Codesandbox example.
hope this helps :)