-
Hi, I'm using your editor with Fabricator plugin for my CMS. When I design a Grid in tiptap editor and then go to my CMS and render in blade, the style isn't applied. What I'm doing wrong? I had the CSS and I guess I'm missing some tiptap js or whatever for rendering the style defined by filament-tiptap-editor plugin (something like filament-tiptap-grid__column). Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
emiliosh
Sep 14, 2023
Replies: 1 comment 1 reply
-
It's up to you to style the content outside the editor. I can't assume anything about the styling needs of your html. 🙂 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found the problem.
In style at outer div tag the display: grid is missing. I had to create a filament-tiptap-grid-builder class with display:grid attribute.
Thanks a lot for your fast response.