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/components/ui/ConfirmModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const ConfirmModal = ({

return (
<div className="fixed inset-0 z-50 flex items-center justify-center p-4">
<div className="absolute inset-0 bg-black/70 transition-opacity" onClick={onCancel} />
<div className="absolute inset-0 bg-black transition-opacity" onClick={onCancel} />

<div
className="relative w-full max-w-sm rounded-lg border-2 border-[rgba(255,152,0,0.3)] bg-[rgba(255,152,0,0.15)] p-8 backdrop-blur-md"
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/Modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const Modal = ({ isOpen, onClose, title, message, type = 'info' }) => {
return (
<div className="fixed inset-0 z-50 flex items-center justify-center p-4">
{/* Backdrop */}
<div className="absolute inset-0 bg-black/70 transition-opacity" onClick={onClose} />
<div className="absolute inset-0 bg-black transition-opacity" onClick={onClose} />

<div
className={`relative w-full max-w-sm rounded-lg border-2 p-8 backdrop-blur-md ${bgColorClass}`}
Expand Down
Loading