Currently, I'm using react-bootstrap and facing a challenge in changing the background color of a chosen <ToggleButton>
to blue.
For instance:
<ButtonToolbar>
<ToggleButtonGroup
type="radio"
name="options"
value={...}
onChange={...}>
<ToggleButton ... />
<ToggleButton ... />
<ToggleButton ... />
</ToggleButtonGroup>
</ButtonToolbar>
Instead of the current dark grey background for M/W/F as seen below, I am striving for it to be blue. Despite multiple CSS attempts, I haven't been successful so far. Thank you for any assistance!