diff --git a/api/components/corner-action.css b/api/components/corner-action.css index 5198f32..b04e466 100644 --- a/api/components/corner-action.css +++ b/api/components/corner-action.css @@ -28,7 +28,7 @@ display: flex; align-items: center; justify-content: center; - background: var(--theme--bg_card); + background: var(--theme--tag_default) !important; box-shadow: var(--theme--ui_shadow, rgba(15, 15, 15, 0.15)) 0px 0px 0px 1px, var(--theme--ui_shadow, rgba(15, 15, 15, 0.15)) 0px 2px 4px !important; diff --git a/api/web.mjs b/api/web.mjs index 4ee4182..baa101c 100644 --- a/api/web.mjs +++ b/api/web.mjs @@ -187,6 +187,8 @@ const triggerHotkeyListener = (event, hotkey) => { const pressed = modifiers[modifier].includes(key) && event[modifier]; if (pressed) return true; } + if (key === 'space') key = ' '; + if (key === 'plus') key = '+'; if (key === event.key.toLowerCase()) return true; }); if (pressed) hotkey.callback(event);