diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2024-10-05 13:47:50 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-05 13:47:50 +0900 |
| commit | d8bf1ff7e9ab4d39b2e924bf7eae010e9b9e21f0 (patch) | |
| tree | 92ae6fb2a809fc0a69df86b4ae36330aa21d5d1f /packages/frontend/src | |
| parent | feat(backend): 通報および通報解決時に送出されるSystemWebhook... (diff) | |
| download | misskey-d8bf1ff7e9ab4d39b2e924bf7eae010e9b9e21f0.tar.gz misskey-d8bf1ff7e9ab4d39b2e924bf7eae010e9b9e21f0.tar.bz2 misskey-d8bf1ff7e9ab4d39b2e924bf7eae010e9b9e21f0.zip | |
#14675 レビューの修正 (#14705)
Diffstat (limited to 'packages/frontend/src')
| -rw-r--r-- | packages/frontend/src/components/MkFukidashi.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/MkFukidashi.vue b/packages/frontend/src/components/MkFukidashi.vue index ba82eb442f..09825487bf 100644 --- a/packages/frontend/src/components/MkFukidashi.vue +++ b/packages/frontend/src/components/MkFukidashi.vue @@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only :class="[ $style.root, tail === 'left' ? $style.left : $style.right, - negativeMargin === true && $style.negativeMergin, + negativeMargin === true && $style.negativeMargin, shadow === true && $style.shadow, ]" > @@ -54,7 +54,7 @@ withDefaults(defineProps<{ &.left { padding-left: calc(var(--fukidashi-radius) * .13); - &.negativeMergin { + &.negativeMargin { margin-left: calc(calc(var(--fukidashi-radius) * .13) * -1); } } @@ -62,7 +62,7 @@ withDefaults(defineProps<{ &.right { padding-right: calc(var(--fukidashi-radius) * .13); - &.negativeMergin { + &.negativeMargin { margin-right: calc(calc(var(--fukidashi-radius) * .13) * -1); } } |