mirror of
https://github.com/ZetaKebab/quartz.git
synced 2025-06-21 08:14:36 +00:00
fix(popover): round coords remove blurred popovers (#1911)
This commit is contained in:
@ -23,7 +23,7 @@ async function mouseEnterHandler(
|
||||
middleware: [inline({ x: clientX, y: clientY }), shift(), flip()],
|
||||
})
|
||||
Object.assign(popoverElement.style, {
|
||||
transform: `translate(${x}px, ${y}px)`,
|
||||
transform: `translate(${x.toFixed()}px, ${y.toFixed()}px)`,
|
||||
})
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user