From 8169af0a50fd10515728bb329def1841011af097 Mon Sep 17 00:00:00 2001 From: techfg Date: Wed, 1 May 2024 18:50:24 -0700 Subject: [PATCH] fix (website): fix long list item wrapping --- site/src/styles/custom.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/site/src/styles/custom.css b/site/src/styles/custom.css index 256f519..3854749 100644 --- a/site/src/styles/custom.css +++ b/site/src/styles/custom.css @@ -153,3 +153,9 @@ span.external-link::after { } } /* End - Custom Style to make left & right nav scrollbar thin */ + +/* Start - Fix long list item wrapping */ +.sl-markdown-content li { + overflow-wrap: anywhere; +} +/* End - Fix long list item wrapping */