From bb6b28a16301efe39f62b9cbc6c9da31987f37ae Mon Sep 17 00:00:00 2001 From: jamey Date: Sat, 28 Feb 2026 08:45:52 +0000 Subject: [PATCH] fix error page layout stacking blocks side by side The error-main flex container was missing flex-direction: column, which went unnoticed until the page builder added a second block (featured_products) to the error page defaults. Co-Authored-By: Claude Opus 4.6 --- assets/css/shop/components.css | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/css/shop/components.css b/assets/css/shop/components.css index 8dc7d69..443e9d0 100644 --- a/assets/css/shop/components.css +++ b/assets/css/shop/components.css @@ -2392,6 +2392,7 @@ .error-main { display: flex; + flex-direction: column; align-items: center; justify-content: center; min-height: calc(100vh - 4rem);