From 81e774bbd4ccdb43b8e841c72733d1229eacebd9 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Mon, 19 Dec 2022 07:41:49 -0600 Subject: [PATCH] Make hotkeys 2-column --- src/features/hotkey.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/features/hotkey.tsx b/src/features/hotkey.tsx index e4cd165..e79b65b 100644 --- a/src/features/hotkey.tsx +++ b/src/features/hotkey.tsx @@ -102,11 +102,13 @@ registerInfoComponent(

Hotkeys

- {keys.map(hotkey => ( -
- {hotkey?.description} -
- ))} +
+ {keys.map(hotkey => ( +
+ {hotkey?.description} +
+ ))} +
); })