Skip to content

Commit ed23aee

Browse files
committed
crate.scss: When rendering code in README, don't show scrollbar unless necessary
The current `overflow-x: scroll` shows a scrollbar all the time, even for code blocks that don't need them. Switch to `overflow-x: auto`, to only show the scrollbar when needed.
1 parent 405b2ad commit ed23aee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/styles/crate.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@
307307
line-height: 1.5;
308308

309309
pre {
310-
overflow-x: scroll;
310+
overflow-x: auto;
311311
}
312312
}
313313
.last-update {

0 commit comments

Comments
 (0)