fix: checkbox default options issue, add default data functionality, fix checbox position issue signyour-self flow,change sequence of widgets

This commit is contained in:
RaktimaNXG
2024-03-04 09:58:53 +05:30
parent 708a3f4ad9
commit bd72ef84ed
15 changed files with 613 additions and 413 deletions
@@ -8,18 +8,17 @@ function Signedby({ pdfDetails }) {
};
return (
<div className="signerComponent">
<div className="signerComponent">
<div
style={{
background: themeColor(),
// color:"white"
color:"white"
}}
className="signedStyle"
>
Signed By
</div>
<div style={{ marginTop: "2px" }}>
<div style={{ marginTop: "2px",background:"white" }}>
<div
style={{
display: "flex",
@@ -61,6 +60,9 @@ function Signedby({ pdfDetails }) {
</div>
</div>
</div>
);
}