From 94891d8a7071ddf1aaebb6a3a5a8b491dca4c25a Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Wed, 18 Mar 2026 02:04:41 +0800 Subject: [PATCH] Fix IAM actions dropdown rendering behind System Settings card Add relative z-10 to the Users Card so its stacking context sits above the sibling System Settings Card. Without this, the absolutely-positioned dropdown menu was painted behind the later sibling in DOM order. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/components/admin/IAMPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/admin/IAMPage.tsx b/frontend/src/components/admin/IAMPage.tsx index 68560c6..6b92b79 100644 --- a/frontend/src/components/admin/IAMPage.tsx +++ b/frontend/src/components/admin/IAMPage.tsx @@ -123,8 +123,8 @@ export default function IAMPage() { /> - {/* User table */} - + {/* User table — relative z-10 so action dropdowns render above sibling cards */} +