I am unable to remove the outline of the editor when clicking it.
Please help me to do this

I have the same issue, it looks like the ProseMirror-focused class gets appends when you click.
But it seems impossible to overwrite that specific :focus class.
Styling is not part of tiptap. It's renderless. Removing focus is basic CSS.
.ProseMirror:focus {
outline: none;
}
@philippkuehn your solution does not work.
Solved The Problem
@philippkuehn Thank you very much. Actually I am also tried this. The first time it not worked because I add CSS under scoped, But after adding this CSS globally it working.
@chkb Please add this code globally, it will work
<style >
.ProseMirror:focus {
outline: none;
}
</style>
or just use /deep/ .ProseMirror:focus
@BiswasSuman That worked! - Thanks!
.ProseMirror-focused:focus {
outline: none;
}
Most helpful comment
Styling is not part of tiptap. It's renderless. Removing focus is basic CSS.