Skip to content

Commit

Permalink
fix(NcMentionBubble): hide selectable mention id from widescreens
Browse files Browse the repository at this point in the history
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
  • Loading branch information
Antreesy committed Jul 1, 2024
1 parent d2452e7 commit e3fdeda
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/NcRichContenteditable/NcMentionBubble.vue
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,10 @@ $bubble-avatar-size: $bubble-height - 2 * $bubble-padding;
&__select {
position: absolute;
z-index: -1;
left: -1000px;
left: -100vw;
width: 1px;
height: 1px;
overflow: hidden;
}
}
Expand Down

0 comments on commit e3fdeda

Please sign in to comment.