fix(mu): avoid unwanted word-break in table elements

(cherry picked from commit b9cd9933a43c75670eb960d931ee4ea39400284a)
This commit is contained in:
dab246
2025-11-27 15:13:06 +07:00
committed by Dat H. Pham
parent a84b7656bd
commit 50671b98ee
+4
View File
@@ -325,6 +325,10 @@ class HtmlUtils {
} }
} }
table, td, th {
word-break: normal !important;
}
${styleCSS ?? ''} ${styleCSS ?? ''}
</style> </style>
</head> </head>