fix(prism.css): allow for long inline code tags to break, preventing horizontal scroll for long strings
This commit is contained in:
parent
4958c7fe66
commit
d745b153c3
3 changed files with 5 additions and 4 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue