We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 988d4ec commit 9f1e539Copy full SHA for 9f1e539
src/CommandPalette/CommandButtonRow.tsx
@@ -11,7 +11,12 @@ export const CommandButtonRow: FC<CommandButtonRowProps> = ({
11
...props
12
}) => {
13
return (
14
- <button type="button" {...props} className="command-palette-row">
+ <button
15
+ type="button"
16
+ {...props}
17
+ className="command-palette-row"
18
+ tabIndex={-1}
19
+ >
20
<span className="command-name">{children}</span>
21
<span>
22
{shortCut.map(shortcut => (
src/CommandPalette/CommandPalette.css
@@ -85,7 +85,7 @@ button.command-palette-row span > *:not(:last-child) {
85
box-sizing: border-box;
86
width: 100%;
87
font-size: 24px;
88
- padding: 4px;
+ padding: 8px;
89
}
90
91
.command-palette-input-row input:focus {
0 commit comments