Skip to content

Commit 25767c6

Browse files
committed
fix: update spacing
1 parent 0061dc0 commit 25767c6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,18 @@ export function GroupsCell({ userGroups }: GroupsCellProps) {
2424
onPointerLeave={() => setIsHovering(false)}
2525
css={{
2626
border: "none",
27+
fontWeight: 400,
2728
textAlign: "left",
2829
padding: 0,
29-
lineHeight: "1.4",
30+
lineHeight: theme.typography.body2.lineHeight,
3031
"&:hover": {
3132
border: "none",
3233
backgroundColor: "transparent",
3334
},
3435
}}
3536
>
3637
<Stack spacing={0}>
37-
<span>
38+
<span css={{ fontSize: "1rem" }}>
3839
{userGroups.length} Group{userGroups.length !== 1 && "s"}
3940
</span>
4041

0 commit comments

Comments
 (0)