Skip to content

Commit

Permalink
Fix horizontal scroll bar. Basically, there was a long line of "code"…
Browse files Browse the repository at this point in the history
… that does not wrap, which causes it to overflow. For this, I think it's okay to break on spaces (though still not mid-word).
  • Loading branch information
thsparks committed Oct 18, 2024
1 parent 11657ac commit 9ecb44d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theme/tutorial.less
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ span.docs.inlinebutton {
span.docs.inlineblock {
padding: 0.05rem .2rem;
padding-bottom: 0.1rem;
white-space: nowrap;
white-space: break-spaces;
border-radius: 0;
border-bottom: 3px solid var(--inline-namespace-color);
color: black;
Expand Down

0 comments on commit 9ecb44d

Please sign in to comment.