From cc7986d7e0258c65ad0913be24046208c1712917 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 18 Aug 2022 16:48:01 +0000 Subject: [PATCH] fix(ui): decrease WorkspaceActions popover padding There was too much padding on the WorkspaceActions dropdown. This fixes that. --- site/src/components/WorkspaceActions/WorkspaceActions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/WorkspaceActions/WorkspaceActions.tsx b/site/src/components/WorkspaceActions/WorkspaceActions.tsx index c913c9f8fe134..9a26059f4b320 100644 --- a/site/src/components/WorkspaceActions/WorkspaceActions.tsx +++ b/site/src/components/WorkspaceActions/WorkspaceActions.tsx @@ -171,6 +171,6 @@ const useStyles = makeStyles((theme) => ({ }, }, popoverPaper: { - padding: `${theme.spacing(2)}px ${theme.spacing(3)}px ${theme.spacing(3)}px`, + padding: `${theme.spacing(1)}px ${theme.spacing(2)}px ${theme.spacing(1)}px`, }, }))