diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-16 15:21:58 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-16 15:21:58 +0900 |
| commit | 73ce1f61a833393c4e709d44b374aa5a4715384a (patch) | |
| tree | b873fbf99e2a9d246c456d4efc30bae294a3f4d9 /src/client/components/ui | |
| parent | Renoteされた時刻が投稿された時刻のように表示される問... (diff) | |
| download | sharkey-73ce1f61a833393c4e709d44b374aa5a4715384a.tar.gz sharkey-73ce1f61a833393c4e709d44b374aa5a4715384a.tar.bz2 sharkey-73ce1f61a833393c4e709d44b374aa5a4715384a.zip | |
Tweak client style
Diffstat (limited to 'src/client/components/ui')
| -rw-r--r-- | src/client/components/ui/popup.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/ui/popup.vue b/src/client/components/ui/popup.vue index 9e360411c0..8497eedecb 100644 --- a/src/client/components/ui/popup.vue +++ b/src/client/components/ui/popup.vue @@ -1,5 +1,5 @@ <template> -<transition :name="$store.state.animation ? 'popup-menu' : ''" :duration="$store.state.animation ? 300 : 0" appear @after-leave="onClosed" @enter="$emit('opening')" @after-enter="childRendered"> +<transition :name="$store.state.animation ? 'popup-menu' : ''" appear @after-leave="onClosed" @enter="$emit('opening')" @after-enter="childRendered"> <div v-show="manualShowing != null ? manualShowing : showing" class="ccczpooj" :class="{ front, fixed, top: position === 'top' }" ref="content" :style="{ pointerEvents: (manualShowing != null ? manualShowing : showing) ? 'auto' : 'none', '--transformOrigin': transformOrigin }"> <slot :point="point"></slot> </div> |