Skip to content

Commit

Permalink
Merge pull request #421 from GenaDrop:staging
Browse files Browse the repository at this point in the history
Fixed input bug in mint nft
  • Loading branch information
Jikugodwill authored Sep 19, 2024
2 parents ead8555 + a5c5bcf commit 9f673e5
Showing 1 changed file with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,16 @@ const MintAmount = styled.div`
margin: 20px auto;
padding: 5px 10px;
p{
display: flex;
margin-bottom: 8px;
color: ${props.isDarkModeOn ? "#fff" : "#000"};
color: #000;
white-space: nowrap;
.dark{
color: #fff;
}
.max{
opacity: 0.7;
}
}
span{
color: #ff0000;
Expand Down Expand Up @@ -407,7 +415,10 @@ const Mint = ({ isDarkModeOn, contractId, connectedDao }) => {
</div>
<MintAmount>
<div className="amount-input">
<p>Amount to mint (max 50)<span className="red-text">*</span></p>
<p className={isDarkModeOn ? "dark" : ""}>
Amount to mint <p className="max">(max 50)</p>
<span className="red-text">*</span>
</p>
<div className={isDarkModeOn ? "burn-dark" : "burn-light"}>
<input
type="number"
Expand Down

0 comments on commit 9f673e5

Please sign in to comment.