diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-05-10 17:12:19 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-05-10 17:12:19 +0900 |
| commit | bf9486edc2a7a58e439e9657faadc09bd934d7d7 (patch) | |
| tree | c09bdc57ea802be2ebe1050df0cf7107169e0045 | |
| parent | fix(client): Fix style of poll viewer (diff) | |
| download | sharkey-bf9486edc2a7a58e439e9657faadc09bd934d7d7.tar.gz sharkey-bf9486edc2a7a58e439e9657faadc09bd934d7d7.tar.bz2 sharkey-bf9486edc2a7a58e439e9657faadc09bd934d7d7.zip | |
refactor(client): Use unique class name
| -rw-r--r-- | src/client/components/notification.vue | 4 | ||||
| -rw-r--r-- | src/client/components/notifications.vue | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/client/components/notification.vue b/src/client/components/notification.vue index 97a2fe1873..0fd368a1ae 100644 --- a/src/client/components/notification.vue +++ b/src/client/components/notification.vue @@ -1,5 +1,5 @@ <template> -<div class="mk-notification" :class="notification.type" v-size="[{ max: 500 }, { max: 600 }]"> +<div class="qglefbjs" :class="notification.type" v-size="[{ max: 500 }, { max: 600 }]"> <div class="head"> <mk-avatar v-if="notification.user" class="icon" :user="notification.user"/> <img v-else class="icon" :src="notification.icon" alt=""/> @@ -115,7 +115,7 @@ export default Vue.extend({ </script> <style lang="scss" scoped> -.mk-notification { +.qglefbjs { position: relative; box-sizing: border-box; padding: 24px 32px; diff --git a/src/client/components/notifications.vue b/src/client/components/notifications.vue index a17663b01d..ecf5268983 100644 --- a/src/client/components/notifications.vue +++ b/src/client/components/notifications.vue @@ -1,5 +1,5 @@ <template> -<div class="mk-notifications"> +<div class="mfcuwfyp"> <x-list class="notifications" :items="items" v-slot="{ item: notification }"> <x-note v-if="['reply', 'quote', 'mention'].includes(notification.type)" :note="notification.note" :key="notification.id"/> <x-notification v-else :notification="notification" :with-time="true" :full="true" class="_panel notification" :key="notification.id"/> @@ -86,7 +86,7 @@ export default Vue.extend({ </script> <style lang="scss" scoped> -.mk-notifications { +.mfcuwfyp { > .notifications { > ::v-deep * { //margin-bottom: var(--margin); |