From 56c965581ac2ea8c3195f28cef67f5918e3192dd Mon Sep 17 00:00:00 2001 From: Furkan Emin Can <78358128+femincan@users.noreply.github.com> Date: Sun, 19 Oct 2025 09:45:43 +0300 Subject: [PATCH] Fix overflowing issues in callouts --- app/elements/doc/callout.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/elements/doc/callout.mjs b/app/elements/doc/callout.mjs index 1823939b..6671cd95 100644 --- a/app/elements/doc/callout.mjs +++ b/app/elements/doc/callout.mjs @@ -31,6 +31,9 @@ export default function Callout ({ html, state }) { callout-container.callout-thin { padding: 0.35rem 0.5rem; } + callout-container > div { + min-width: 0; + } callout-container pre code { border-radius: 0.333rem; }