Change `overflow-x` value to `auto`
`overflow-x: scroll;` makes scrollbar visible always whether the content does overflow or not.
This commit is contained in:
parent
0bf17923b5
commit
6521b84aac
|
@ -136,7 +136,7 @@ code {
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
overflow-x: scroll;
|
overflow-x: auto;
|
||||||
|
|
||||||
> code {
|
> code {
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
Loading…
Reference in New Issue