When working with the v-deep
selector to customize the appearance of tiptap
, a rich text editor, accessing the .ProseMirror
class in SCSS would look like this:
editor-content {
// ... styles
&::v-deep(.ProseMirror) {
// ... styles
}
}
However, is there a way to style the .ProseMirror
class using TailwindCSS
? Since I can't directly add classes to it, I'm unsure how to achieve this. Is it even possible?