Skip to content

Commit a2fb44d

Browse files
committed
feat: add border left on confirmation modal
1 parent cb4948a commit a2fb44d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Common/Drawer/Drawer.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
}
4343
&.right {
4444
right: 0;
45+
border-left: 1px solid var(--border-primary);
4546
}
4647
&.left {
4748
left: 0;

src/Shared/Components/ConfirmationModal/ConfirmationModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const ConfirmationModalBody = ({
8080
return (
8181
<Backdrop onEscape={shouldCloseOnEscape ? handleCloseWrapper : noop}>
8282
<motion.div
83-
className="confirmation-modal flexbox-col br-8 bg__primary dc__m-auto mt-40 w-400"
83+
className="confirmation-modal border__secondary flexbox-col br-8 bg__primary dc__m-auto mt-40 w-400"
8484
exit={{ y: 100, opacity: 0, scale: 0.75, transition: { duration: 0.35 } }}
8585
initial={{ y: 100, opacity: 0, scale: 0.75 }}
8686
animate={{ y: 0, opacity: 1, scale: 1 }}

0 commit comments

Comments
 (0)