enhancement: Uses bold font-weight for unread notifications (#5073)

This commit is contained in:
Sivin Varghese 2022-07-20 14:41:03 +05:30 committed by GitHub
parent cd5e0c548c
commit 6105567238
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,6 +13,9 @@
<tr
v-for="notificationItem in notifications"
:key="notificationItem.id"
:class="{
'is-unread': notificationItem.read_at === null,
}"
@click="() => onClickNotification(notificationItem)"
>
<td>
@ -163,6 +166,10 @@ export default {
}
}
.is-unread {
font-weight: var(--font-weight-bold);
}
.notifications--loader {
font-size: var(--font-size-default);
display: flex;