Option to set MarkdownEditor background color
Hi! We are using a MarkdownEditor() component to preview and edit a .svg string. This works great, except for white images. As the background color is also white the .svg cannot be seen. Is there a way to alter the background-color of the MarkdownEditor? I already tried something like this:
But that did not have the expected result...
Solution:Jump to solution
Found a solution by overwriting the styling in
filament.css
:
```
.logo-markdown [x-html='preview'] {
background-color: red !important;...2 Replies