Merge pull request #235 from Govinda04/feature/fix-delete-btn

fix: Delete button issue
This commit is contained in:
Andrew
2023-11-27 23:53:58 +05:30
committed by GitHub
2 changed files with 8 additions and 4 deletions
@@ -274,8 +274,7 @@ function EmailComponent({
<span
style={{
color: "white",
fontSize: "13px",
marginTop: "2px"
fontSize: "13px"
}}
>
{data}
@@ -287,7 +286,8 @@ function EmailComponent({
src={close}
width={10}
height={10}
style={{ fontWeight: "600", margin: "0 0 10px 2px" }}
style={{ fontWeight: "600", marginLeft: "7px" }}
className="emailChipClose"
/>
</div>
);
@@ -80,6 +80,10 @@
padding: 5px 10px;
}
.emailChipClose:hover {
cursor: pointer;
}
.addEmailInput {
padding: 10px;
border-radius: 4px;
@@ -785,4 +789,4 @@ option {
.signature-backdrop.fade.in {
opacity: 0.5;
}
}