From 2da8a7edf92bcd9de2e9cee02bd4b5e2a49a9dd1 Mon Sep 17 00:00:00 2001 From: Ricky Sullivan Date: Fri, 15 Apr 2016 16:49:09 +1000 Subject: [PATCH] Don't allow styles to be added to HTML tag. --- scss/grid/_grid.scss | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scss/grid/_grid.scss b/scss/grid/_grid.scss index 1e09576f..38a28d81 100755 --- a/scss/grid/_grid.scss +++ b/scss/grid/_grid.scss @@ -15,9 +15,11 @@ $grid-column-count: 12 !default; $column-padding-bottom: $global-padding !default; //For viewing email in browser -html { - min-height: 100%; - background: $body-background; +@media only screen { + html { + min-height: 100%; + background: $body-background; + } } table { @@ -144,4 +146,3 @@ th.expander { width: 0; padding: 0 !important; } - -- 2.47.2