TF-4051 Fix text and images are truncated on mobile in received emails

This commit is contained in:
dab246
2025-09-24 14:23:29 +07:00
committed by Dat H. Pham
parent 8e1205eaff
commit b57e2a9fb7
+10
View File
@@ -159,6 +159,16 @@ class HtmlUtils {
table {
white-space: normal !important;
}
@media only screen and (max-width: 600px) {
table {
width: 100% !important;
}
a {
width: -webkit-fill-available !important;
}
}
${styleCSS ?? ''}
</style>