From d0d5fedbabe64130c7c79ecaa58e1aea926d553b Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 6 Jun 2024 13:00:53 +0200 Subject: [PATCH] docs: wrap long words instead of overflowing This fixes rendering on mobile for the 24.1.1 release notes, where we'd otherwise end up with horizontal scrolling. Part-of: --- docs/mesa3d_theme/static/rst.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/mesa3d_theme/static/rst.css b/docs/mesa3d_theme/static/rst.css index 782147929fc..3f254f53ba5 100644 --- a/docs/mesa3d_theme/static/rst.css +++ b/docs/mesa3d_theme/static/rst.css @@ -54,6 +54,10 @@ main .container { padding: 0; } +main.body { + overflow-wrap: break-word; +} + li > p:last-of-type, th > p:last-of-type, td > p:last-of-type,