Fix placeholder color for sticky note node
This commit is contained in:
parent
38fce1d066
commit
e104af4346
|
|
@ -77,7 +77,12 @@ export const Input = ({ inputParam, value, nodes, edges, nodeId, onChange, disab
|
||||||
sx={{
|
sx={{
|
||||||
border: 'none',
|
border: 'none',
|
||||||
background: 'none',
|
background: 'none',
|
||||||
padding: '10px 14px'
|
padding: '10px 14px',
|
||||||
|
textarea: {
|
||||||
|
'&::placeholder': {
|
||||||
|
color: '#616161'
|
||||||
|
}
|
||||||
|
}
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue