Skip to content

Commit

Permalink
fix: 修复动态详情弹出评论输入框时的显示问题
Browse files Browse the repository at this point in the history
  • Loading branch information
foliet committed Dec 23, 2023
1 parent 572efae commit 7a34ef0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions src/pages/moment/moment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@
</TopBar>
<view class="reply-mask" @click="leaveReply()" />

<view
v-if="moment"
:style="{ height: 'calc(100vh - 16vw - ' + keyboardHeight + 'px)' }"
class="content-frame"
>
<view v-if="moment" class="content-frame">
<view class="container">
<view class="post-info-box">
<view class="poster-info-box">
Expand Down
6 changes: 1 addition & 5 deletions src/pages/post/post.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@
</TopBar>
<view class="reply-mask" @click="leaveReply()" />

<view
v-if="post"
:style="{ height: 'calc(100vh - 16vw - ' + keyboardHeight + 'px)' }"
class="content-frame"
>
<view v-if="post" class="content-frame">
<view class="header">
<view class="title">
{{ post.title }}
Expand Down

0 comments on commit 7a34ef0

Please sign in to comment.