diff --git a/apps/OpenSign/src/components/pdf/Placeholder.js b/apps/OpenSign/src/components/pdf/Placeholder.js
index 31909ff2a..30ca1f529 100644
--- a/apps/OpenSign/src/components/pdf/Placeholder.js
+++ b/apps/OpenSign/src/components/pdf/Placeholder.js
@@ -834,7 +834,7 @@ function Placeholder(props) {
)}
{isTabAndMobile ? (
{
case "stamp":
return { width: 150, height: 60 };
case "checkbox":
- return { width: 15, height: 17 };
+ return { width: 15, height: 19 };
case textInputWidget:
- return { width: 150, height: 17 };
+ return { width: 150, height: 19 };
case "dropdown":
return { width: 120, height: 22 };
case "initials":
return { width: 50, height: 50 };
case "name":
- return { width: 150, height: 17 };
+ return { width: 150, height: 19 };
case "company":
- return { width: 150, height: 17 };
+ return { width: 150, height: 19 };
case "job title":
- return { width: 150, height: 17 };
+ return { width: 150, height: 19 };
case "date":
return { width: 100, height: 20 };
case "image":
return { width: 70, height: 70 };
case "email":
- return { width: 150, height: 17 };
+ return { width: 150, height: 19 };
case radioButtonWidget:
return { width: 5, height: 10 };
case textWidget:
- return { width: 150, height: 17 };
+ return { width: 150, height: 19 };
default:
return { width: 150, height: 60 };
}
diff --git a/apps/OpenSign/src/pages/PlaceHolderSign.js b/apps/OpenSign/src/pages/PlaceHolderSign.js
index 5d1256054..135f37d05 100644
--- a/apps/OpenSign/src/pages/PlaceHolderSign.js
+++ b/apps/OpenSign/src/pages/PlaceHolderSign.js
@@ -491,8 +491,10 @@ function PlaceHolderSign() {
let dropData = [];
let placeHolder;
const dragTypeValue = item?.text ? item.text : monitor.type;
- const widgetWidth = defaultWidthHeight(dragTypeValue).width;
- const widgetHeight = defaultWidthHeight(dragTypeValue).height;
+ const widgetWidth =
+ defaultWidthHeight(dragTypeValue).width * containerScale;
+ const widgetHeight =
+ defaultWidthHeight(dragTypeValue).height * containerScale;
//adding and updating drop position in array when user drop signature button in div
if (item === "onclick") {
const divHeight = divRef.current.getBoundingClientRect().height;