summaryrefslogtreecommitdiff
path: root/src/client/components
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-04-15 20:55:54 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-04-15 20:55:54 +0900
commit05ba1d0fd458e92f63a2d979117e11ff7270267e (patch)
tree53413a93b441a4fb3b39d637798c5f42e987680e /src/client/components
parentbetter list rendering (diff)
downloadsharkey-05ba1d0fd458e92f63a2d979117e11ff7270267e.tar.gz
sharkey-05ba1d0fd458e92f63a2d979117e11ff7270267e.tar.bz2
sharkey-05ba1d0fd458e92f63a2d979117e11ff7270267e.zip
fix style
Diffstat (limited to 'src/client/components')
-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>