0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(console): tooltip vertical offset (#1169)

This commit is contained in:
Xiao Yijun 2022-06-21 11:52:18 +08:00 committed by GitHub
parent 97faade141
commit 99090e3144
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ const Tooltip = ({ content, anchorRef, className, isKeepOpen = false }: Props) =
const { position, positionState, mutate } = usePosition({
verticalAlign: 'top',
horizontalAlign: 'center',
offset: { vertical: 12, horizontal: 0 },
offset: { vertical: 20, horizontal: 0 },
anchorRef,
overlayRef: tooltipRef,
});