Make hotkeys 2-column

This commit is contained in:
thepaperpilot 2022-12-19 07:41:49 -06:00
parent d02b7294a1
commit 81e774bbd4

View file

@ -102,12 +102,14 @@ registerInfoComponent(
<div> <div>
<br /> <br />
<h4>Hotkeys</h4> <h4>Hotkeys</h4>
<div style="column-count: 2">
{keys.map(hotkey => ( {keys.map(hotkey => (
<div> <div>
<Hotkey hotkey={hotkey as GenericHotkey} /> {hotkey?.description} <Hotkey hotkey={hotkey as GenericHotkey} /> {hotkey?.description}
</div> </div>
))} ))}
</div> </div>
</div>
); );
}) })
); );