From e5b4c543483a3899a7803d0d7f7da9eaef2e0c3a Mon Sep 17 00:00:00 2001 From: blackcoffeexbt <87530449+blackcoffeexbt@users.noreply.github.com> Date: Tue, 5 Jul 2022 16:20:59 +0100 Subject: [PATCH] Added line wrapping for text in code examples to make it readable on normal sized screens (#688) --- lnbits/static/scss/base.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lnbits/static/scss/base.scss b/lnbits/static/scss/base.scss index 3668e7736..672a85b61 100644 --- a/lnbits/static/scss/base.scss +++ b/lnbits/static/scss/base.scss @@ -140,4 +140,10 @@ video { // text-wrap .text-wrap { word-break: break-word; +} + +.q-card { + code { + overflow-wrap: break-word; + } } \ No newline at end of file