From 8be06b5844f12356d1fe40677afc01dd3b31d55c Mon Sep 17 00:00:00 2001 From: Calvin Correli Date: Fri, 7 Nov 2014 14:50:45 -0500 Subject: [PATCH] Don't scale images up on smaller screens - only scale them down, as necessary --- css/ink.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/ink.css b/css/ink.css index 92b14dc8..50ef21fb 100644 --- a/css/ink.css +++ b/css/ink.css @@ -587,8 +587,8 @@ body.outlook p { @media only screen and (max-width: 600px) { table[class="body"] img { - width: auto !important; - height: auto !important; + max-width: auto !important; + max-height: auto !important; } table[class="body"] center { -- 2.47.2