This commit is contained in:
raymondz
2021-11-20 02:40:04 -05:00
parent 42bf766132
commit 152a1c81d0

View File

@@ -226,9 +226,12 @@ function VerifyButton({ vKeys, message }) {
return (
<div>
{text ? (
text
<div className="mt-2 text-sm">{text}</div>
) : (
<button className="btn btn-blue" onClick={() => handleClick()}>
<button
className="bg-gray-100 mt-2 py-1.5 pb-0.5 px-2 rounded-lg text-sm"
onClick={() => handleClick()}
>
Verify
</button>
)}