diff --git a/src/components/command-bar/components/dialog/command-bar-dialog.module.css b/src/components/command-bar/components/dialog/command-bar-dialog.module.css index 657abcfbb3..6c6ef68cf5 100644 --- a/src/components/command-bar/components/dialog/command-bar-dialog.module.css +++ b/src/components/command-bar/components/dialog/command-bar-dialog.module.css @@ -153,6 +153,9 @@ min-height: 52px; padding: 16px; + /* Accounts for extra feedback link padding */ + padding-left: 24px; + @media (--dev-dot-mobile) { justify-content: flex-end; } @@ -173,3 +176,7 @@ display: flex; gap: 4px; } + +.feedbackLink { + padding: 8px; +} diff --git a/src/components/command-bar/components/dialog/footer.tsx b/src/components/command-bar/components/dialog/footer.tsx index 51a44c80dc..2531046352 100644 --- a/src/components/command-bar/components/dialog/footer.tsx +++ b/src/components/command-bar/components/dialog/footer.tsx @@ -50,6 +50,7 @@ const CommandBarDialogFooter = () => {
}