Skip to content

Commit 7eabfe5

Browse files
author
igardev
committed
Increase the z index of the modal dialogs.
1 parent 8f3e9c1 commit 7eabfe5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/server/webui/src/components/ModalProvider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export function ModalProvider({ children }: { children: React.ReactNode }) {
4747

4848
{/* Confirm Modal */}
4949
{confirmState.isOpen && (
50-
<div className="modal modal-open z-[1000]">
50+
<div className="modal modal-open z-[1100]">
5151
<div className="modal-box">
5252
<h3 className="font-bold text-lg">{confirmState.message}</h3>
5353
<div className="modal-action">
@@ -70,7 +70,7 @@ export function ModalProvider({ children }: { children: React.ReactNode }) {
7070

7171
{/* Alert Modal */}
7272
{alertState.isOpen && (
73-
<div className="modal modal-open z-[1000]">
73+
<div className="modal modal-open z-[1100]">
7474
<div className="modal-box">
7575
<h3 className="font-bold text-lg">{alertState.message}</h3>
7676
<div className="modal-action">

0 commit comments

Comments
 (0)