fix: Align status badges in user management table
Changes: - Add items-start to status column flex container - Ensures status badges (Active, Locked, Failed attempts) align to the left - Consistent with Role badge alignment above - Improves visual consistency in the table layout Before: Status badges were centered/stretched in the column After: Status badges are left-aligned like other badges 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -85,7 +85,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td class="px-6 py-4 whitespace-nowrap">
|
<td class="px-6 py-4 whitespace-nowrap">
|
||||||
<div class="flex flex-col gap-1">
|
<div class="flex flex-col gap-1 items-start">
|
||||||
<span
|
<span
|
||||||
v-if="isAccountLocked(user)"
|
v-if="isAccountLocked(user)"
|
||||||
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-red-100 text-red-800"
|
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-red-100 text-red-800"
|
||||||
|
|||||||
Reference in New Issue
Block a user