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 f31f95b commit c227f3dCopy full SHA for c227f3d
app/components/inbox/InboxList.vue
@@ -52,8 +52,10 @@ defineShortcuts({
52
<div
53
class="p-4 sm:px-6 text-sm cursor-pointer border-l-2 transition-colors"
54
:class="[
55
- mail.unread ? 'text-highlighted' : 'text-toned)',
56
- selectedMail && selectedMail.id === mail.id ? 'border-primary bg-primary/10' : 'border-(--ui-bg) hover:border-primary hover:bg-primary/5'
+ mail.unread ? 'text-highlighted' : 'text-toned',
+ selectedMail && selectedMail.id === mail.id
57
+ ? 'border-primary bg-primary/10'
58
+ : 'border-(--ui-bg) hover:border-primary hover:bg-primary/5'
59
]"
60
@click="selectedMail = mail"
61
>
0 commit comments