Skip to content

Commit c838178

Browse files
Merge pull request #877 from OpenSignLabs/raktima-opensignlabs-patch-10
fix: update UI design of my signature
2 parents 94d3865 + d199283 commit c838178

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

apps/OpenSign/src/components/pdf/EditTemplate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ const EditTemplate = ({ template, onSuccess }) => {
138138
{!isEnableSubscription && (
139139
<PremiumAlertHeader
140140
message={
141-
"Disable Auto reminder is free in beta, this feature will incur a fee later."
141+
"Auto reminder is free in beta, this feature will incur a fee later."
142142
}
143143
/>
144144
)}

apps/OpenSign/src/components/pdf/PlaceholderType.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ function PlaceholderType(props) {
677677
className="w-full h-full"
678678
/>
679679
) : (
680-
<div className="text-[11px] w-full h-full text-black flex flex-coljustify-center items-center">
680+
<div className="text-[11px] w-full h-full text-black flex flex-col justify-center items-center">
681681
{props?.handleUserName &&
682682
props?.handleUserName(
683683
props?.data?.Id,

apps/OpenSign/src/pages/Form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ const Forms = (props) => {
834834
{!isEnableSubscription && (
835835
<PremiumAlertHeader
836836
message={
837-
"Disable Auto reminder is free in beta, this feature will incur a fee later."
837+
"Auto reminder is free in beta, this feature will incur a fee later."
838838
}
839839
/>
840840
)}

apps/OpenSign/src/pages/Managesign.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ const ManageSign = () => {
265265
<div className="relative">
266266
<div>
267267
{image ? (
268-
<div className="signatureCanvas relative border-[2px] border-[#888]">
268+
<div className="signatureCanvas relative border-[2px] border-[#888] rounded-box">
269269
<img
270270
alt="signature"
271271
src={image}
@@ -279,7 +279,7 @@ const ManageSign = () => {
279279
canvasProps={{
280280
width: "456px",
281281
height: "180px",
282-
className: "signatureCanvas"
282+
className: "signatureCanvas rounded-box"
283283
}}
284284
backgroundColor="rgb(255, 255, 255)"
285285
onEnd={() =>
@@ -326,7 +326,7 @@ const ManageSign = () => {
326326
</div>
327327
)}
328328
</div>
329-
<div className="flex flex-row gap-2">
329+
<div className="flex flex-row gap-2 text-sm md:text-base mr-1">
330330
<div
331331
type="button"
332332
className="op-link"
@@ -358,7 +358,7 @@ const ManageSign = () => {
358358
</span>
359359
<div>
360360
{isInitials ? (
361-
<div className="intialSignature relative border-[1px] border-[#888]">
361+
<div className="intialSignature relative border-[1px] border-[#888] rounded-box overflow-hidden">
362362
<img
363363
alt="inititals"
364364
src={Initials}
@@ -374,7 +374,7 @@ const ManageSign = () => {
374374
ref={initailsRef}
375375
penColor={initialPen}
376376
canvasProps={{
377-
className: "intialSignature"
377+
className: "intialSignature rounded-box"
378378
}}
379379
backgroundColor="rgb(255, 255, 255)"
380380
onEnd={() =>
@@ -424,7 +424,7 @@ const ManageSign = () => {
424424
<div>
425425
<div
426426
type="button"
427-
className="op-link"
427+
className="op-link text-sm md:text-base mr-1"
428428
onClick={() => handleClearInitials()}
429429
>
430430
Clear

0 commit comments

Comments
 (0)