Skip to content

Commit

Permalink
Change user table user name font size
Browse files Browse the repository at this point in the history
 (#144)
  • Loading branch information
kimurash committed Nov 26, 2024
1 parent 4e57780 commit 3c51395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/components/users/UsersListTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const UsersListTable = ({ users }: UsersTableProps) => {
<Table.Tr key={user.id}>
{user.id && (
<>
<Table.Td>{user.name}</Table.Td>
<Table.Td fz="md">{user.name}</Table.Td>
<Table.Td maw={rem(5)}>
<UserDeleteButton id={user.id} />
</Table.Td>
Expand Down

0 comments on commit 3c51395

Please sign in to comment.