friendofsvelte / tipex

An goto sytled text editor for SvelteKit; based on TipTap; tipex
https://tipex.pages.dev/
43 stars 0 forks source link

How to disable the blue ring that comes when I click to edit on the editor? #2

Closed robishx closed 10 months ago

robishx commented 10 months ago

Whenever I come to edit, there a blue ring on the text editor. I wanna disable it, or change the color of it how to do it?

Bishwas-py commented 10 months ago

To disable it you can simply pass a param focusOnEdit="{false}" it'll disable the focusOnEdit. Or you can also use box-shadow: none;. And to change the color, I'll update you on that.

robishx commented 10 months ago

Thanks focusOnEdit="{false}" did the work.