diff --git a/src/lib/components/NoteList.svelte b/src/lib/components/NoteList.svelte index 558fe7f..7ee439e 100644 --- a/src/lib/components/NoteList.svelte +++ b/src/lib/components/NoteList.svelte @@ -990,7 +990,7 @@ {/if} - {#if $viewMode !== 'trash'} + {#if $viewMode !== 'trash' && $viewMode !== 'quickaccess'} - + + {:else} @@ -1131,6 +1137,8 @@
{#if $viewMode === 'trash'}

Trash is empty

+ {:else if $viewMode === 'quickaccess'} +

No starred notes

{:else}

No notes yet

@@ -1720,6 +1728,9 @@ } .selection-action { + display: inline-flex; + align-items: center; + gap: 4px; background: none; border: 1px solid var(--border-color); color: var(--text-primary);