From b5931a8538cb57c497f0fcc42ba8afe07a631552 Mon Sep 17 00:00:00 2001 From: Jeena Date: Thu, 22 May 2014 21:09:32 +0200 Subject: [PATCH] fixed long images not scrolling --- css/screen.css | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/css/screen.css b/css/screen.css index 7c14659..4c05fec 100644 --- a/css/screen.css +++ b/css/screen.css @@ -140,20 +140,21 @@ section > footer { img { max-width: 100% !important; - height: auto; +} + +#full > article pre { + overflow: auto; } @media screen and (width: 320px) { - #full > article * , #full > article pre { + #full > article > * { max-width: 300px !important; - overflow: auto; } } @media screen and (width: 480px) { - #full > article * { + #full > article > * { max-width: 460px !important; - overflow: auto; } }