Skip to content

Commit 9311ee5

Browse files
FIX : Redact modal view
1 parent 47d3094 commit 9311ee5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/src/components/library/RedactModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ export function RedactModal({ isOpen, onClose, file }: RedactModalProps) {
433433
animate={{ opacity: 1 }}
434434
exit={{ opacity: 0 }}
435435
onClick={handleClose}
436-
className="fixed inset-0 bg-black/50 backdrop-blur-sm z-50"
436+
className="fixed inset-0 bg-black/60 backdrop-blur-sm z-50"
437437
/>
438438

439439
{/* Modal */}
@@ -444,7 +444,7 @@ export function RedactModal({ isOpen, onClose, file }: RedactModalProps) {
444444
className="fixed inset-0 z-50 flex items-center justify-center p-4"
445445
>
446446
<div
447-
className="bg-background border border-warm-gray/15 dark:border-stone/15 rounded-xl shadow-2xl overflow-hidden"
447+
className="bg-(--card) border border-(--border) rounded-xl shadow-2xl overflow-hidden"
448448
style={{
449449
width: "min(1400px, 90vw)",
450450
height: "min(800px, 85vh)",

frontend/src/components/ui/evidence-viewer/EvidencePreviewModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export function EvidencePreviewModal({
186186
onClick={handleBackdropClick}
187187
>
188188
<div
189-
className="bg-background border border-warm-gray/15 dark:border-stone/15 rounded-xl shadow-2xl overflow-hidden flex flex-col"
189+
className="bg-(--card) border border-(--border) rounded-xl shadow-2xl overflow-hidden flex flex-col"
190190
style={{
191191
width: config.width,
192192
height: config.height,

0 commit comments

Comments
 (0)