From 360edace722892001a62f87fac3ba2ea1a23a7ba Mon Sep 17 00:00:00 2001 From: Scott Pouliot Date: Sat, 25 Apr 2026 19:16:40 -0400 Subject: [PATCH] Fix EnrollPrompt page layout squished on desktop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The auth panel CSS (brand panel gradient, form panel flex centering, feature list, subtext color) was only defined in Login.cshtml's @section Styles — not in the shared auth layout. EnrollPrompt used the same class names but had no styles behind them, so the two-column layout collapsed. Added matching styles in EnrollPrompt's own @section Styles block. Co-Authored-By: Claude Sonnet 4.6 --- .../Views/Passkey/EnrollPrompt.cshtml | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) diff --git a/src/PowderCoating.Web/Views/Passkey/EnrollPrompt.cshtml b/src/PowderCoating.Web/Views/Passkey/EnrollPrompt.cshtml index 83f9fc0..92a45ac 100644 --- a/src/PowderCoating.Web/Views/Passkey/EnrollPrompt.cshtml +++ b/src/PowderCoating.Web/Views/Passkey/EnrollPrompt.cshtml @@ -4,6 +4,86 @@ var returnUrl = ViewBag.ReturnUrl as string ?? "/"; } +@section Styles { + +} +