From 1e1bebda6eef7f70749b930a77672bc8530dee95 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Sat, 1 Jan 2022 14:02:45 -0600 Subject: [PATCH] prevent inline code from inserting line breaks mid-word --- assets/sass/_custom.sass | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/assets/sass/_custom.sass b/assets/sass/_custom.sass index 08f1245..0129993 100644 --- a/assets/sass/_custom.sass +++ b/assets/sass/_custom.sass @@ -58,4 +58,10 @@ html, body padding-top: 0.01rem padding-left: 0.5rem padding-bottom: 0.01rem - font-size: 1rem \ No newline at end of file + font-size: 1rem + +// code overrides +code + word-break: normal + &.noClass + line-break: normal \ No newline at end of file