diff options
| author | taehoon <th.dev91@gmail.com> | 2019-07-17 13:00:44 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-10-24 15:15:33 -0400 |
| commit | 39e92e76b9f1c4d7de844a23f88e21b502e30f6b (patch) | |
| tree | 9fc791a4ec0e699b40311eba387513c82dbf07bd | |
| parent | 85c897403a0460c4932c70f783c1725d32cff6ac (diff) | |
fix popper go behind the top bar
| -rw-r--r-- | src/components/status/status.vue | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index fd1705a0..1187c182 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -182,6 +182,11 @@ trigger="hover" :offset="5" :container="false" + :popperOptions="{ + modifiers: { + preventOverflow: { padding: 50, boundariesElement: 'viewport' }, + } + }" @show="replyEnter(status.in_reply_to_status_id)" > <div slot="popover"> |
