|
Now, it seems min-width is hardcoded with 1024px which leads to horizontal scroll |
Answered by
xdan
Jun 26, 2026
Replies: 1 comment
|
That width comes from CSS, so you can override it. The preview opens in a Jodit dialog, so target its panel in your stylesheet — something like |
0 replies
Answer selected by
xdan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That width comes from CSS, so you can override it. The preview opens in a Jodit dialog, so target its panel in your stylesheet — something like
.jodit-dialog__panel { min-width: 0; width: 90vw; max-width: 900px; }(bump specificity if your reset doesn't win). That drops the forced 1024px and the horizontal scroll.