Skip to content

Commit

Permalink
Updated CSS with word-wrap for code blocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhibbitts committed Oct 16, 2024
1 parent 2d11887 commit 2b037b5
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions docs/assets/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,18 @@
}

.markdown-section code {
white-space: pre-wrap!important;
overflow-wrap: anywhere;
white-space: pre-wrap !important;
overflow-wrap: break-word;
}

.markdown-section pre {
white-space: pre-wrap !important;
overflow-wrap: break-word;
}

.markdown-section pre code {
word-break: break-all!important;
white-space: pre-wrap !important;
overflow-wrap: break-word;
}

.markdown-section a {
Expand Down

0 comments on commit 2b037b5

Please sign in to comment.