mirror of
https://github.com/multica-ai/multica.git
synced 2026-08-04 17:18:35 +02:00
The body column was max-w-4xl (896px), leaving 832px of text after px-8. At the prose body size (14px Inter) that is ~122 Latin / ~59 CJK characters per line, well past the comfortable range — long descriptions and comment threads lose the return sweep between lines. max-w-xl (576px) leaves 512px of text: ~75 Latin / ~36 CJK characters for the description, and ~64 Latin / ~31 CJK for comment bodies, which are inset a further 72px by the card's px-4 plus the pl-10 avatar gutter. The loading skeleton's column is changed to match, so the page does not jump sideways when real content replaces it. The right sidebar is untouched. Measured in Chromium against the real font stack rather than assumed: `ch` is the advance of "0" (0.63em in Inter) against an average prose character of 0.47em, so a `Nch` cap holds ~1.33N characters, and on this container it would resolve against the inherited 16px root rather than the prose's 14px. `max-w-[68ch]` would have been 686px and ~91 characters, not 68. Co-authored-by: multica-agent <github@multica.ai>