feat: update client select button style

This commit is contained in:
codytseng
2025-07-09 14:37:15 +08:00
parent ece003ca4f
commit 5d1427db31
7 changed files with 16 additions and 23 deletions

View File

@@ -52,7 +52,7 @@ function EmbeddedNoteNotFound({ noteId, className }: { noteId: string; className
<div className={cn('text-left p-2 sm:p-3 border rounded-lg', className)}>
<div className="flex flex-col items-center text-muted-foreground font-medium gap-2">
<div>{t('Sorry! The note cannot be found 😔')}</div>
<ClientSelect variant="secondary" className="w-full mt-2" originalNoteId={noteId} />
<ClientSelect className="w-full mt-2" originalNoteId={noteId} />
</div>
</div>
)