From a990100294f5e4d81ca6a13d5aabb5059936e56a Mon Sep 17 00:00:00 2001 From: PierreDillard <7gaspard77@gmail.com> Date: Mon, 26 Jan 2026 10:26:20 +0100 Subject: [PATCH] fix(extra.css): prevent horizontal scroll in properties tables --- docs/stylesheets/extra.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 8e50ad43..97ad3f80 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -188,3 +188,18 @@ background-color: #ffffff; } } + + +.md-typeset__scrollwrap table { + width: 100%; + table-layout: fixed; +} + +/* Force wrapping in long text */ +.md-typeset__scrollwrap td, +.md-typeset__scrollwrap th { + white-space: normal; + overflow-wrap: anywhere; + word-break: break-word; +} +