fix(shortcuts): increase dialog scroll height for expanded shortcut list

With 20 shortcuts across 3 groups, the previous 480px max was tight.
Increase to 560px / 70vh so all shortcuts are visible without
excessive scrolling.
This commit is contained in:
Marco Beretta 2026-03-27 00:05:11 +01:00
parent b1729ce057
commit 4b50012c32
No known key found for this signature in database
GPG key ID: D918033D8E74CC11

View file

@ -76,7 +76,7 @@ function KeyboardShortcutsDialog() {
</OGDialogClose>
</div>
<div className="max-h-[min(60vh,480px)] overflow-y-auto px-4 pb-4 pt-2">
<div className="max-h-[min(70vh,560px)] overflow-y-auto px-4 pb-4 pt-2">
{groupEntries.map(([groupKey, shortcuts], groupIdx) => (
<div
key={groupKey}