From 7bb71dc7073b32b6a4780177e49cc668a3d2039f Mon Sep 17 00:00:00 2001 From: "Najjar\\NajjarV02" Date: Wed, 3 Jun 2026 10:27:20 +0400 Subject: [PATCH] fix: mobile configurator shows robot above price panel On mobile (<768px) the flex column put the config aside (price breakdown + Proceed/Reset) above the robot canvas. Add explicit order so the robot renders first and the panel flows below it. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/app/globals.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/globals.css b/src/app/globals.css index bdfe6cc..8da15c6 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -617,9 +617,10 @@ html { min-height: 260px !important; width: 100% !important; flex: none !important; + order: 1 !important; } .glass-panel-responsive { - order: unset !important; + order: 2 !important; position: relative !important; inset: auto !important; width: 100% !important;