fix: horizontal pdf or large size pdf's scrollbar issue in signyourself and placeholder flow

This commit is contained in:
RaktimaNXG
2023-11-30 14:12:25 +05:30
parent 3c54f2287c
commit 411941d9f7
5 changed files with 44 additions and 38 deletions
@@ -479,3 +479,10 @@ export const embedDocId = async (pdfDoc, documentId, allPages) => {
});
}
};
export const pdfNewWidthFun = (divRef) => {
const clientWidth = divRef.current.offsetWidth;
const pdfWidth = clientWidth - 160 - 200;
//160 is width of left side, 200 is width of right side component
return pdfWidth;
};