Skip to content

Commit 3cdf12f

Browse files
committed
Fix rendering issues with Mobile Outlook and Gmail
All mobile Outlook’s and Gmail’s should be full-bleed. Mobile Outlook also appears **not* to cut off emails like so: #184 (comment) Fixes #184 and references #108
1 parent 7988b92 commit 3cdf12f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

cerberus-fluid.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,19 +107,19 @@
107107

108108
/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
109109
@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
110-
.email-container {
110+
u ~ div .email-container {
111111
min-width: 320px !important;
112112
}
113113
}
114114
/* iPhone 6, 6S, 7, 8, and X */
115115
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
116-
.email-container {
116+
u ~ div .email-container {
117117
min-width: 375px !important;
118118
}
119119
}
120120
/* iPhone 6+, 7+, and 8+ */
121121
@media only screen and (min-device-width: 414px) {
122-
.email-container {
122+
u ~ div .email-container {
123123
min-width: 414px !important;
124124
}
125125
}

cerberus-hybrid.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,19 +107,19 @@
107107

108108
/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
109109
@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
110-
.email-container {
110+
u ~ div .email-container {
111111
min-width: 320px !important;
112112
}
113113
}
114114
/* iPhone 6, 6S, 7, 8, and X */
115115
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
116-
.email-container {
116+
u ~ div .email-container {
117117
min-width: 375px !important;
118118
}
119119
}
120120
/* iPhone 6+, 7+, and 8+ */
121121
@media only screen and (min-device-width: 414px) {
122-
.email-container {
122+
u ~ div .email-container {
123123
min-width: 414px !important;
124124
}
125125
}

cerberus-responsive.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,19 +107,19 @@
107107

108108
/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
109109
@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
110-
.email-container {
110+
u ~ div .email-container {
111111
min-width: 320px !important;
112112
}
113113
}
114114
/* iPhone 6, 6S, 7, 8, and X */
115115
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
116-
.email-container {
116+
u ~ div .email-container {
117117
min-width: 375px !important;
118118
}
119119
}
120120
/* iPhone 6+, 7+, and 8+ */
121121
@media only screen and (min-device-width: 414px) {
122-
.email-container {
122+
u ~ div .email-container {
123123
min-width: 414px !important;
124124
}
125125
}

0 commit comments

Comments
 (0)