Which exact UI Library version are you using? For example: 1.0.1 - don't just write v1.
v1.17.2
Bug summary
In uui-card-user v1.17.2, the slot[name='tag'] CSS uses bottom positioning instead of top, causing the status badge (e.g. "Disabled") to render at the bottom of the card and overlap the user avatar in the Umbraco CMS backoffice Users grid view.
Specifics
@umbraco-ui/uui-card-user v1.17.2
Umbraco CMS v17.2.2
Steps to reproduce
- Open Umbraco CMS v17.2.2 backoffice
- Navigate to Users section
- Create a user and disable them
- View the Users grid — the Disabled badge overlaps the avatar
Expected result / actual result
The status badge should appear in the top-right corner of the card, as it did in v1.17.1
The status badge appears at the bottom of the card, overlapping the avatar
Root cause
In src/components/card-user/card-user.element.ts:
css
slot[name='tag'] {
position: absolute;
bottom: var(--uui-size-space-4); ← should be top
right: var(--uui-size-space-4);
}
Proposed fix
Change bottom to top in the slot[name='tag'] CSS block.

Which exact UI Library version are you using? For example: 1.0.1 - don't just write v1.
v1.17.2
Bug summary
In
uui-card-userv1.17.2, theslot[name='tag']CSS usesbottompositioning instead oftop, causing the status badge (e.g. "Disabled") to render at the bottom of the card and overlap the user avatar in the Umbraco CMS backoffice Users grid view.Specifics
@umbraco-ui/uui-card-user v1.17.2
Umbraco CMS v17.2.2
Steps to reproduce
Expected result / actual result
The status badge should appear in the top-right corner of the card, as it did in v1.17.1
The status badge appears at the bottom of the card, overlapping the avatar
Root cause
In
src/components/card-user/card-user.element.ts:css
slot[name='tag'] {
position: absolute;
bottom: var(--uui-size-space-4); ← should be
topright: var(--uui-size-space-4);
}
Proposed fix
Change
bottomtotopin theslot[name='tag']CSS block.