Skip to content

Commit 85d4de0

Browse files
committed
fix: expand hoverable/clickable area of groups cell
1 parent 3ec6823 commit 85d4de0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

site/src/pages/UsersPage/UsersTable/GroupsCell.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ export function GroupsCell({ userGroups }: GroupsCellProps) {
2323
onPointerEnter={() => setIsHovering(true)}
2424
onPointerLeave={() => setIsHovering(false)}
2525
css={{
26+
width: "100%",
2627
border: "none",
2728
fontWeight: 400,
28-
textAlign: "left",
29+
justifyContent: "flex-start",
2930
padding: 0,
3031
lineHeight: theme.typography.body2.lineHeight,
3132
"&:hover": {

0 commit comments

Comments
 (0)