fix(ui): decrease WorkspaceActions popover padding (#3555)

There was too much padding on the WorkspaceActions dropdown. This fixes
that.
This commit is contained in:
Joe Previte
2022-08-19 09:58:31 -07:00
committed by GitHub
parent c14a4b92ed
commit 91bfcca287
@@ -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`,
},
}))