Fix placeholder color for sticky note node

This commit is contained in:
Ilango 2024-01-12 17:09:36 +05:30
parent 38fce1d066
commit e104af4346
1 changed files with 6 additions and 1 deletions

View File

@ -77,7 +77,12 @@ export const Input = ({ inputParam, value, nodes, edges, nodeId, onChange, disab
sx={{
border: 'none',
background: 'none',
padding: '10px 14px'
padding: '10px 14px',
textarea: {
'&::placeholder': {
color: '#616161'
}
}
}}
/>
</FormControl>