Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/shared/components/LoadingModal.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const LoadingModal = () => {
return (
<div className="fixed inset-0 flex justify-center items-center bg-slate-200 bg-opacity-50">
<div className="fixed inset-0 z-50 flex justify-center items-center bg-slate-200 bg-opacity-50">
<div className="rounded-md flex flex-col items-center">
<div className="grid grid-cols-2 gap-2 mb-4">
<div className="h-4 w-4 rounded-full bg-gray-400 animate-dot-flip [animation-delay:0ms]" />
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/Modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Button from "./Button";

const Modal = ({ children, onClick, onClose, buttonText = "확인" }) => {
return (
<div className="fixed inset-0 flex justify-center items-center bg-slate-200 bg-opacity-50">
<div className="fixed inset-0 z-50 flex justify-center items-center bg-slate-200 bg-opacity-50">
<div className="py-4 px-6 bg-white rounded-md relative space-y-4">
<IoCloseOutline
className="absolute top-2 right-2 text-2xl cursor-pointer"
Expand Down