diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-28 09:32:22 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-28 09:32:22 +0900 |
| commit | 13677ff2b0b14d715a65f2922d06f88efb4ba253 (patch) | |
| tree | df0de1d4aa8b0667e71afa46dbeb1496fa8be4af /packages/frontend/src/components/MkNotification.vue | |
| parent | update es version (diff) | |
| download | misskey-13677ff2b0b14d715a65f2922d06f88efb4ba253.tar.gz misskey-13677ff2b0b14d715a65f2922d06f88efb4ba253.tar.bz2 misskey-13677ff2b0b14d715a65f2922d06f88efb4ba253.zip | |
remove v-size directive
Diffstat (limited to 'packages/frontend/src/components/MkNotification.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNotification.vue | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue index 8b8d3f452d..cb2f384553 100644 --- a/packages/frontend/src/components/MkNotification.vue +++ b/packages/frontend/src/components/MkNotification.vue @@ -1,5 +1,5 @@ <template> -<div ref="elRef" v-size="{ max: [500, 600] }" class="qglefbjs" :class="notification.type"> +<div ref="elRef" class="qglefbjs" :class="notification.type"> <div class="head"> <MkAvatar v-if="notification.type === 'pollEnded'" class="icon" :user="notification.note.user"/> <MkAvatar v-else-if="notification.user" class="icon" :user="notification.user"/> @@ -170,16 +170,6 @@ useTooltip(reactionRef, (showing) => { display: flex; contain: content; - &.max-width_600px { - padding: 16px; - font-size: 0.9em; - } - - &.max-width_500px { - padding: 12px; - font-size: 0.85em; - } - > .head { position: sticky; top: 0; |