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,11 +102,13 @@ registerInfoComponent(
<div> <div>
<br /> <br />
<h4>Hotkeys</h4> <h4>Hotkeys</h4>
{keys.map(hotkey => ( <div style="column-count: 2">
<div> {keys.map(hotkey => (
<Hotkey hotkey={hotkey as GenericHotkey} /> {hotkey?.description} <div>
</div> <Hotkey hotkey={hotkey as GenericHotkey} /> {hotkey?.description}
))} </div>
))}
</div>
</div> </div>
); );
}) })