From 876cf8f268bb954819f3948b1473d77d277ebe92 Mon Sep 17 00:00:00 2001 From: Jeena Date: Tue, 17 Sep 2013 09:53:27 +0200 Subject: [PATCH] fixes too wide contents --- css/screen.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/css/screen.css b/css/screen.css index d6f3200..e5a63d0 100644 --- a/css/screen.css +++ b/css/screen.css @@ -130,14 +130,16 @@ img { } @media screen and (width: 320px) { - #full > article * { + #full > article * , #full > article pre { max-width: 300px !important; + overflow: auto; } } @media screen and (width: 480px) { #full > article * { max-width: 460px !important; + overflow: auto; } }