mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-04-07 00:15:23 +02:00
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:
parent
b1729ce057
commit
4b50012c32
1 changed files with 1 additions and 1 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue