I am trying to customize the look and feel of blocks provided by framework Blockly.
Please see the link: Blockly Input Text
But as I understood and researched, I can only modify the color of particular block.
'blockStyles': {
'my_block': {
'colourPrimary': '#dedede',
'colourSecondary': '#AD7BE9',
'colourTertiary': '#CDB6E9'
}
}
Is there any way, I can modify block like shape, height, width, input text height / width.
Is there any option to add custom CSS like normal HTML div elements ?
Please let me know if anyone has faced similar problem.