fix(prism.css): allow for long inline code tags to break, preventing horizontal scroll for long strings

This commit is contained in:
Cory Dransfeldt 2025-04-26 21:58:26 -07:00
parent 4958c7fe66
commit d745b153c3
No known key found for this signature in database
3 changed files with 5 additions and 4 deletions

View file

@ -36,7 +36,8 @@ pre {
background: light-dark(var(--gray-200), var(--gray-900));
border: var(--border-gray);
padding: var(--spacing-xs);
white-space: normal
white-space: normal;
word-wrap: break-word;
}
.namespace {