Skip to content

Commit 90a6252

Browse files
committed
🧹
1 parent 05df2f5 commit 90a6252

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/src/components/TableToolbar/TableToolbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Skeleton from "@mui/material/Skeleton";
55
export const TableToolbar = styled(Box)(({ theme }) => ({
66
fontSize: 13,
77
marginBottom: theme.spacing(1),
8-
marginTop: theme.spacing(0),
8+
marginTop: 0,
99
height: 36, // The size of a small button
1010
color: theme.palette.text.secondary,
1111
"& strong": { color: theme.palette.text.primary },

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export function UserGroupsCell({ userGroups }: GroupsCellProps) {
7777
flexFlow: "column nowrap",
7878
fontSize: theme.typography.body2.fontSize,
7979
padding: theme.spacing(0.5, 0.25),
80-
gap: theme.spacing(0),
80+
gap: 0,
8181
}}
8282
>
8383
{userGroups.map((group) => {

0 commit comments

Comments
 (0)