I have the following segmented
<Segmented options={['Daily', 'Weekly', 'Monthly', 'Quarterly', 'Yearly']} />
I have to change the background colors:
.ant-segmented-item {
background: #fff;
}
.ant-segmented-item-selected {
background: red;
}
When I click on an item, I want the transition to be red. right no it is transparent and therefore I cant see the animation.
how is that possible?
Thanks
https://codesandbox.io/s/basic-antd-4-22-6-forked-qb3hqy?file=/index.css