/// @group media-query
////
-/// Body background color.
-/// @type Length
-$body-background-color: #333 !default;
-
/// Container width for small screens.
/// @type Length
$container-width-small: 95% !default;
@media only screen and (max-width: #{$small-range}) {
- table,
- table.body {
- background: $body-background-color;
- }
-
table.body img {
width: auto !important;
height: auto !important;
'components/outlook-first',
'components/media-query';
-body {
- background-color: #eeeeee;
-}
-
-.container {
- background-color: #ffffff;
-}
-
//my overrides
.header {
background: #999999;
/// @type Number
$sub-column-padding-right: $grid-column-gutter / 2 !default;
+/// Body background color.
+/// @type Length
+$body-background-color: #eeeeee !default;
+
+//For viewing email in browser
+html {
+ min-height: 100%;
+ background: $body-background-color;
+}
+
table {
&.body {
+ background: $body-background-color;
height: 100%;
width: 100%;
}
&.container {
+ background: $container-background-color;
+
width: $container-width;
margin: 0 auto;
text-align: inherit;