Fix IAM user actions dropdown clipped by overflow-x-auto
The table wrapper's overflow-x-auto forced overflow-y to also clip, hiding the 3-dot actions dropdown below the container boundary. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
2438cdcf25
commit
4fc85684ea
@ -127,7 +127,7 @@ export default function IAMPage() {
|
|||||||
) : !users?.length ? (
|
) : !users?.length ? (
|
||||||
<p className="px-5 pb-5 text-sm text-muted-foreground">No users found.</p>
|
<p className="px-5 pb-5 text-sm text-muted-foreground">No users found.</p>
|
||||||
) : (
|
) : (
|
||||||
<div className="overflow-x-auto">
|
<div>
|
||||||
<table className="w-full text-sm">
|
<table className="w-full text-sm">
|
||||||
<thead>
|
<thead>
|
||||||
<tr className="border-b border-border bg-card-elevated/50">
|
<tr className="border-b border-border bg-card-elevated/50">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user