Skip to content

Commit 9f8f9a0

Browse files
Merge pull request #235 from Govinda04/feature/fix-delete-btn
fix: Delete button issue
2 parents 7faed51 + 6085763 commit 9f8f9a0

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

microfrontends/SignDocuments/src/Component/component/emailComponent.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,7 @@ function EmailComponent({
274274
<span
275275
style={{
276276
color: "white",
277-
fontSize: "13px",
278-
marginTop: "2px"
277+
fontSize: "13px"
279278
}}
280279
>
281280
{data}
@@ -287,7 +286,8 @@ function EmailComponent({
287286
src={close}
288287
width={10}
289288
height={10}
290-
style={{ fontWeight: "600", margin: "0 0 10px 2px" }}
289+
style={{ fontWeight: "600", marginLeft: "7px" }}
290+
className="emailChipClose"
291291
/>
292292
</div>
293293
);

microfrontends/SignDocuments/src/css/signature.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@
8080
padding: 5px 10px;
8181
}
8282

83+
.emailChipClose:hover {
84+
cursor: pointer;
85+
}
86+
8387
.addEmailInput {
8488
padding: 10px;
8589
border-radius: 4px;
@@ -785,4 +789,4 @@ option {
785789

786790
.signature-backdrop.fade.in {
787791
opacity: 0.5;
788-
}
792+
}

0 commit comments

Comments
 (0)