From a8ef387a332a66389b4110a995457331fb239048 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 14:54:42 +0000 Subject: [PATCH] fix(css): replace invalid justify-content: stretch with center stretch is not a valid keyword for justify-content in flexbox; browsers treat it as the initial value. The button already spans full width via the width: 100% rule on the child. Co-Authored-By: Anthony Jones --- apps/web/src/styles/theme.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/styles/theme.css b/apps/web/src/styles/theme.css index a19c9f79..38323203 100644 --- a/apps/web/src/styles/theme.css +++ b/apps/web/src/styles/theme.css @@ -1773,7 +1773,7 @@ body:not(.has-progress-bar) #reading-progress-bar { @media (max-width: 600px) { .salesforce-form-actions { - justify-content: stretch; + justify-content: center; } .salesforce-form-actions .btn {