mojombo / mojombo.github.io

Jekyll source for my personal blog.
http://tom.preston-werner.com
935 stars 820 forks source link

How to fix the over flow in code block? #34

Closed andreyuhai closed 4 years ago

andreyuhai commented 4 years ago

When there is a long line of code, the code over flows as you can see from the image below

Screenshot from 2020-06-21 00-25-59

How to fix that so that the code block would have a horizontal scroll bar instead?

andreyuhai commented 4 years ago

In screen.css

#post pre {
 overflow: auto;
}

fixed it.