Skip to content

Commit

Permalink
Fix: light mode for keyboard shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
avivash committed Nov 13, 2023
1 parent 81af590 commit b9759ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/GlobalShortcutView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
{#each Object.keys(shortcutMap) as key}
<div class="flex gap-4 items-center justify-start">
<kbd
class="px-2 py-1.5 text-xs font-semibold text-base-content bg-base-100 border border-gray-200 rounded-sm"
class="px-2 py-1.5 text-xs font-semibold text-base-content bg-base-100 border border-base-content rounded-sm"
>
{key}
</kbd>
<span class="flex gap-4 text-gray-100 font-mono">
<span class="flex gap-4 text-base-content font-mono">
-
<p class="justify-self-end">{shortcutMap[key]}</p>
</span>
Expand Down

0 comments on commit b9759ce

Please sign in to comment.