Skip to content

Commit 92b76fd

Browse files
committed
Fix tooltip z-index issue
1 parent 1c011fd commit 92b76fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

assets/css/modal.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
position: fixed;
2929
inset: 0;
3030
background: rgb(0 0 0 / 60%);
31-
z-index: 99;
31+
z-index: 999;
3232
overflow: auto;
3333
}
3434

assets/js/dashboard/util/tooltip.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function TooltipMessage({
9191
ref={setPopperElement}
9292
style={popperStyle}
9393
{...popperAttributes}
94-
className="z-[999] px-2 py-1 rounded-sm text-sm text-gray-100 font-medium bg-gray-800 dark:bg-gray-700"
94+
className="z-[99] px-2 py-1 rounded-sm text-sm text-gray-100 font-medium bg-gray-800 dark:bg-gray-700"
9595
role="tooltip"
9696
>
9797
{children}

0 commit comments

Comments
 (0)