Skip to content

Commit

Permalink
Fix rendering issues with Mobile Outlook and Gmail
Browse files Browse the repository at this point in the history
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
  • Loading branch information
TedGoas committed Oct 9, 2018
1 parent 7988b92 commit 3cdf12f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions cerberus-fluid.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,19 +107,19 @@

/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
.email-container {
u ~ div .email-container {
min-width: 320px !important;
}
}
/* iPhone 6, 6S, 7, 8, and X */
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
.email-container {
u ~ div .email-container {
min-width: 375px !important;
}
}
/* iPhone 6+, 7+, and 8+ */
@media only screen and (min-device-width: 414px) {
.email-container {
u ~ div .email-container {
min-width: 414px !important;
}
}
Expand Down
6 changes: 3 additions & 3 deletions cerberus-hybrid.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,19 +107,19 @@

/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
.email-container {
u ~ div .email-container {
min-width: 320px !important;
}
}
/* iPhone 6, 6S, 7, 8, and X */
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
.email-container {
u ~ div .email-container {
min-width: 375px !important;
}
}
/* iPhone 6+, 7+, and 8+ */
@media only screen and (min-device-width: 414px) {
.email-container {
u ~ div .email-container {
min-width: 414px !important;
}
}
Expand Down
6 changes: 3 additions & 3 deletions cerberus-responsive.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,19 +107,19 @@

/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
.email-container {
u ~ div .email-container {
min-width: 320px !important;
}
}
/* iPhone 6, 6S, 7, 8, and X */
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
.email-container {
u ~ div .email-container {
min-width: 375px !important;
}
}
/* iPhone 6+, 7+, and 8+ */
@media only screen and (min-device-width: 414px) {
.email-container {
u ~ div .email-container {
min-width: 414px !important;
}
}
Expand Down

0 comments on commit 3cdf12f

Please sign in to comment.