bug: Fixes alignment issue with deleted messages (#2613)

This commit is contained in:
Nithin David Thomas 2021-07-13 12:00:29 +05:30 committed by GitHub
parent 15085cfb98
commit deb4513584
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,6 +61,7 @@
</div> </div>
</a> </a>
</div> </div>
<div class="context-menu-wrap">
<context-menu <context-menu
v-if="isBubble && !isMessageDeleted" v-if="isBubble && !isMessageDeleted"
:is-open="showContextMenu" :is-open="showContextMenu"
@ -70,6 +71,7 @@
@delete="handleDelete" @delete="handleDelete"
@copy="handleCopy" @copy="handleCopy"
/> />
</div>
</li> </li>
</template> </template>
<script> <script>
@ -371,7 +373,7 @@ li.left.has-tweet-menu .context-menu {
margin-bottom: var(--space-medium); margin-bottom: var(--space-medium);
} }
li.right .context-menu { li.right .context-menu-wrap {
margin-left: auto; margin-left: auto;
} }