#How to change the CSS for <control />?
1 messages · Page 1 of 1 (latest)
1 messages · Page 1 of 1 (latest)
Please provide an exmple how to change the background for the Controls
you can use regular css
.react-flow__controls-button {
background: red;
}
Thanks that worked, also can you please help me changing the color of Icons of the button?
This should work
.react-flow__controls-button svg {
fill: red;
}