From 91bfcca2870567f485e50ce2d5512da32c750de5 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 19 Aug 2022 09:58:31 -0700 Subject: [PATCH] fix(ui): decrease WorkspaceActions popover padding (#3555) 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 c913c9f8fe..9a26059f4b 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`, }, }))