From 7d61466feeaa927ae9cf2101c70c6fcf391319d4 Mon Sep 17 00:00:00 2001 From: Randall Stillwell Date: Thu, 4 Jun 2026 14:12:15 -0500 Subject: [PATCH] refactor(auth): migrate login + signup form cards to .glass-panel-strong MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Brief 2 of unify-glass-panel-surfaces convoy. Replaces the handrolled `rgba(--bg-secondary-rgb, 0.85) + backdrop-blur-sm` glass imitation on the login + signup form-card containers with the canonical .glass-panel-strong className so the auth flow shares the rest of the app's surface treatment (corner catch-lights, system blur tier, gradient border). Both swaps are pure className+style → className migration: Before:
After:
All children (,
-
+
{error && (
diff --git a/pages/signup.js b/pages/signup.js index 4b28ba6..d44038a 100644 --- a/pages/signup.js +++ b/pages/signup.js @@ -224,13 +224,7 @@ export default function Signup() {
-
+
{error && (
-- 2.45.2