We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50a9a8c commit 98d1356Copy full SHA for 98d1356
src/components/inbox/InboxList.vue
@@ -54,7 +54,9 @@ defineShortcuts({
54
class="p-4 sm:px-6 text-sm cursor-pointer border-l-2 transition-colors"
55
:class="[
56
mail.unread ? 'text-highlighted' : 'text-toned',
57
- selectedMail && selectedMail.id === mail.id ? 'border-primary bg-primary/10' : 'border-(--ui-bg) hover:border-primary hover:bg-primary/5'
+ selectedMail && selectedMail.id === mail.id
58
+ ? 'border-primary bg-primary/10'
59
+ : 'border-(--ui-bg) hover:border-primary hover:bg-primary/5'
60
]"
61
@click="selectedMail = mail"
62
>
0 commit comments