From fe00ed09ff8aa1aa220e28cbdb04c6f92b747094 Mon Sep 17 00:00:00 2001 From: aarsh <144159115+Aarshpatel12@users.noreply.github.com> Date: Mon, 26 Jan 2026 17:28:54 +0530 Subject: [PATCH] Fix: Stabilize table cell word breaking (Fixes #53) --- docs/stylesheets/extra.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 3cac2b08..d672a9b6 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -4,16 +4,20 @@ } .md-typeset__table table:not([class]) { - display: table + display: table; } -/* This automatically stretches the site contents to monitor width*/ + +/* This automatically stretches the site contents to monitor width */ .md-grid { max-width: initial; } + /* Preserve words so they are not broken in the middle on newlines */ .md-typeset td { overflow-wrap: break-word; + word-break: break-word; /* Fixes jumping text behavior on interaction */ } + /* Control hyperlink button properties */ .md-button.md-button--hyperlink { /* top | right | bottom | left */