mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
textarea fix
This commit is contained in:
parent
997db111bd
commit
f6b8208906
@ -49,6 +49,11 @@
|
||||
display: none;
|
||||
}
|
||||
|
||||
.textarea {
|
||||
composes: input;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.select {
|
||||
composes: input;
|
||||
height: 43px;
|
||||
|
@ -57,7 +57,12 @@ export default function InputElement({
|
||||
)
|
||||
case 'textarea':
|
||||
return (
|
||||
<textarea name={name} id={name} className={styles.input} {...props} />
|
||||
<textarea
|
||||
name={name}
|
||||
id={name}
|
||||
className={styles.textarea}
|
||||
{...props}
|
||||
/>
|
||||
)
|
||||
case 'radio':
|
||||
case 'checkbox':
|
||||
|
Loading…
Reference in New Issue
Block a user