fix(markdown): wrap long inline code in Safari
Some checks failed
CI / verify (push) Failing after 51s

Safari does not treat `/` as a soft break opportunity inside inline
`<code>`, so long paths overflow the fixed-width stacked note column.
Use `overflow-wrap: anywhere` so the column can shrink to its max-width
instead of being pushed wider by unbreakable inline code.
This commit is contained in:
Julien Calixte
2026-06-09 16:22:03 +02:00
parent ac3a641b22
commit 57bc63d43b

View File

@@ -182,6 +182,10 @@ pre {
} }
} }
:not(pre) > code {
overflow-wrap: anywhere;
}
pre.mermaid { pre.mermaid {
display: flex; display: flex;
justify-content: center; justify-content: center;