mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2024-11-16 22:29:24 +08:00
Polished new product page
This commit is contained in:
parent
1bdf7356d8
commit
e4c7c8fc66
1 changed files with 5 additions and 2 deletions
|
@ -41,8 +41,11 @@ export default function NewProduct() {
|
|||
Product Name
|
||||
</p>
|
||||
<input
|
||||
style={{ width: "32rem" }}
|
||||
onChange={(e: { target: { value: any } }) => {
|
||||
style={{
|
||||
...{ width: "32rem", height: "2rem" },
|
||||
...styles.text_S,
|
||||
}}
|
||||
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
setProduct(e.target.value);
|
||||
}}
|
||||
maxLength={20}
|
||||
|
|
Loading…
Reference in a new issue