fix(prism.css): use overflow-wrap for long, uninterrupted text strings

This commit is contained in:
Cory Dransfeldt 2025-05-14 06:52:54 -07:00
parent 563cdef42a
commit f822d627c1
No known key found for this signature in database
3 changed files with 7 additions and 8 deletions

View file

@ -25,7 +25,6 @@ pre {
code {
white-space: pre-wrap;
word-wrap: break-word;
overflow-wrap: break-word;
padding: 0;
}
@ -37,7 +36,7 @@ pre {
border: var(--border-gray);
padding: var(--spacing-xs);
white-space: normal;
word-wrap: break-word;
overflow-wrap: break-word;
}
.namespace {