diff options
author | Tommy Chen <tommy351@gmail.com> | 2012-04-06 07:48:10 +0200 |
---|---|---|
committer | Tommy Chen <tommy351@gmail.com> | 2012-04-06 07:48:10 +0200 |
commit | d22088c65306ba69267924da9a0f7d43a326ec21 (patch) | |
tree | 92b2c60cf7381777ac48a91a37692023652428fd | |
parent | fe61af913d62b9c5f6457a540c2d11dff0bb4bc4 (diff) | |
download | octopress-theme-jeyzu-d22088c65306ba69267924da9a0f7d43a326ec21.zip octopress-theme-jeyzu-d22088c65306ba69267924da9a0f7d43a326ec21.tar.gz |
fix code block overflow problem
-rw-r--r-- | sass/parts/_syntax.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sass/parts/_syntax.scss b/sass/parts/_syntax.scss index ad85bc5..8777000 100644 --- a/sass/parts/_syntax.scss +++ b/sass/parts/_syntax.scss @@ -58,7 +58,7 @@ article{ line-height: 1.5; margin-top: 10px; padding: 5px 15px; - overflow-x: scroll; + overflow-x: auto; @include border-radius(5px); code{ background: none; |