Skip to content

Commit

Permalink
fix: shortcuts kbd shake (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
ischanx authored Sep 15, 2024
1 parent b3748cc commit 7e8f462
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/renderer/src/modules/modal/shortcuts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const ShortcutModalContent = () => {
<div
key={`${type}-${action}`}
className={cn(
"flex items-center justify-between px-3 py-1.5",
"flex h-9 items-center justify-between px-3 py-1.5",
index % 2 && "bg-native/40",
)}
>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/pages/settings/(settings)/shortcuts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function Component() {
<div
key={`${type}-${action}`}
className={cn(
"flex items-center justify-between px-3 py-1.5",
"flex h-9 items-center justify-between px-3 py-1.5",
index % 2 && "bg-native/40",
)}
>
Expand Down

0 comments on commit 7e8f462

Please sign in to comment.