diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-15 20:55:54 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-15 20:55:54 +0900 |
| commit | 05ba1d0fd458e92f63a2d979117e11ff7270267e (patch) | |
| tree | 53413a93b441a4fb3b39d637798c5f42e987680e /src/client/components | |
| parent | better list rendering (diff) | |
| download | sharkey-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.vue | 5 |
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> |