summaryrefslogtreecommitdiff
path: root/src/client/components/notifications.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/components/notifications.vue')
-rw-r--r--src/client/components/notifications.vue5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/components/notifications.vue b/src/client/components/notifications.vue
index baafa86f4d..0891108d8b 100644
--- a/src/client/components/notifications.vue
+++ b/src/client/components/notifications.vue
@@ -1,7 +1,6 @@
<template>
-<div class="mfcuwfyp _noGap_">
- <div class="_magnet"></div>
- <XList class="notifications" :items="items" v-slot="{ item: notification }">
+<div class="mfcuwfyp _noGap_ _magnetParent">
+ <XList class="notifications _magnetChild" :items="items" v-slot="{ item: notification }">
<XNote v-if="['reply', 'quote', 'mention'].includes(notification.type)" :note="notification.note" @update:note="noteUpdated(notification.note, $event)" :key="notification.id"/>
<XNotification v-else :notification="notification" :with-time="true" :full="true" class="_panel notification" :key="notification.id"/>
</XList>