We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0061dc0 commit 25767c6Copy full SHA for 25767c6
site/src/pages/UsersPage/UsersTable/GroupsCell.tsx
@@ -24,17 +24,18 @@ export function GroupsCell({ userGroups }: GroupsCellProps) {
24
onPointerLeave={() => setIsHovering(false)}
25
css={{
26
border: "none",
27
+ fontWeight: 400,
28
textAlign: "left",
29
padding: 0,
- lineHeight: "1.4",
30
+ lineHeight: theme.typography.body2.lineHeight,
31
"&:hover": {
32
33
backgroundColor: "transparent",
34
},
35
}}
36
>
37
<Stack spacing={0}>
- <span>
38
+ <span css={{ fontSize: "1rem" }}>
39
{userGroups.length} Group{userGroups.length !== 1 && "s"}
40
</span>
41
0 commit comments