mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-09-12 20:57:40 +02:00
fix: design of email sent toast message
This commit is contained in:
@@ -3,15 +3,18 @@ import "../../css/signature.css";
|
||||
|
||||
function EmailToast({ isShow }) {
|
||||
return (
|
||||
<div
|
||||
style={{ display: isShow ? "flex" : "none", justifyContent: "center" }}
|
||||
>
|
||||
<div className="emailToast">
|
||||
<span style={{ fontSize: "12px", fontWeight: "500" }}>
|
||||
Email sent successfully!
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<>
|
||||
{isShow && (
|
||||
<div style={{ display: "flex", justifyContent: "center" }}>
|
||||
<div
|
||||
className="alert alert-success successBox"
|
||||
style={{ zIndex: "1051" }}
|
||||
>
|
||||
Email sent successfully!
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user