From 8de8babba54e81f745d00a65f5777097363cf409 Mon Sep 17 00:00:00 2001 From: shukiv Date: Fri, 22 May 2026 18:33:47 +0300 Subject: [PATCH] fix(email): keep a small gutter on plain-text emails on mobile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The <=640px rule zeroes .email-content-text horizontal padding, so plain-text (prose) emails render flush against the viewport edge on phones, which hurts readability. Use a reduced 0.75rem gutter instead of 0 — still maximizes width for wide content but keeps text off the screen edge. --- app/globals.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/globals.css b/app/globals.css index 70e5b862..55ef6a77 100644 --- a/app/globals.css +++ b/app/globals.css @@ -242,8 +242,8 @@ body { @media (max-width: 640px) { .email-content-text { - padding-left: 0; - padding-right: 0; + padding-left: 0.75rem; + padding-right: 0.75rem; } }