fix(frontend): horizontal-scroll table wrapper + portal Select dropdown

Make .table-wrapper overflow-x-auto so wide rows (long name + email)
stay reachable — the actions column (deactivate/reset password) was
clipped before. Render the Select option list in a body-level portal
with fixed positioning so it is never clipped by the scroll container.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
keyhan
2026-06-18 13:29:08 +03:30
parent 585fdbc9b7
commit a3a7e17cca
2 changed files with 57 additions and 17 deletions
+1 -1
View File
@@ -110,7 +110,7 @@
/* ─── Table ──────────────────────────────────────────── */
.table-wrapper {
@apply overflow-hidden rounded-2xl border border-gray-200/80 bg-white shadow-sm;
@apply overflow-x-auto rounded-2xl border border-gray-200/80 bg-white shadow-sm;
}
/* ─── Loading skeleton ──────────────────────────────── */