Skip to content

Commit ca2269f

Browse files
authored
Fix z-index of the mass delete modal (pterodactyl#3463)
Fixes the order of mass confirmation modal to correctly be displayed prominently on top of all elements
1 parent d33522c commit ca2269f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/scripts/components/server/files/MassActionsBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const MassActionsBar = () => {
6363

6464
return (
6565
<Fade timeout={75} in={selectedFiles.length > 0} unmountOnExit>
66-
<div css={tw`pointer-events-none fixed bottom-0 z-50 left-0 right-0 flex justify-center`}>
66+
<div css={tw`pointer-events-none fixed bottom-0 z-20 left-0 right-0 flex justify-center`}>
6767
<SpinnerOverlay visible={loading} size={'large'} fixed>
6868
{loadingMessage}
6969
</SpinnerOverlay>

0 commit comments

Comments
 (0)