fix: tag suggestions positioning (#2151)

This commit is contained in:
Maciej Kasprzyk
2023-08-18 02:41:24 +02:00
committed by GitHub
parent 3f82729e9f
commit 735cfda768
2 changed files with 12 additions and 2 deletions

View File

@ -94,8 +94,8 @@ const TagSuggestions = ({ editorRef, editorActions }: Props) => {
if (!isVisibleRef.current || !position) return null;
return (
<div
className="z-2 p-1 absolute max-w-[12rem] rounded font-mono shadow bg-zinc-200 dark:bg-zinc-600"
style={{ left: position.left - 6, top: position.top + position.height + 2 }}
className="tag-suggestions z-20 p-1 absolute max-w-[12rem] rounded font-mono shadow bg-zinc-200 dark:bg-zinc-600"
style={{ left: position.left, top: position.top + position.height }}
>
{suggestionsRef.current.map((tag, i) => (
<div