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