Skip to content

Commit 08a9770

Browse files
fix: completion popup design issue in tablet view
1 parent d99fecd commit 08a9770

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

apps/OpenSign/src/pages/PdfRequestFiles.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1590,10 +1590,8 @@ function PdfRequestFiles() {
15901590
<div className="px-[15px]">
15911591
<span>
15921592
Congratulations! 🎉 This document has been
1593-
successfully
1593+
successfully signed by all participants!
15941594
</span>
1595-
<br />
1596-
<span>signed by all participants!</span>
15971595
</div>
15981596
)}
15991597
{!isCompleted?.message && (

apps/OpenSign/src/primitives/ModalUi.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ const ModalUi = ({
1919
<div className="fixed z-[999] top-0 left-0 w-[100%] h-[100%] bg-black bg-opacity-[75%]">
2020
<div
2121
className={`${
22-
reduceWidth ? "md:min-w-[430px]" : "md:min-w-[500px]"
23-
} fixed z-[1000] top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 text-sm bg-white rounded shadow-md max-h-90 min-w-[90%] overflow-y-auto hide-scrollbar `}
22+
reduceWidth
23+
? "md:min-w-[440px] md:max-w-[400px]"
24+
: "md:min-w-[500px]"
25+
} fixed z-[1000] top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 text-sm bg-white rounded shadow-md max-h-90 min-w-[90%] overflow-y-auto hide-scrollbar `}
2426
>
2527
{showHeader && (
2628
<div

0 commit comments

Comments
 (0)