I am attempting to customize the styling of my component with the following code:
export const StyledCascader = styled(Cascader)`
background-color: gray;
ul.ant-cascader-menu {
background: red !important;
}
`;
Despite using styled components and adding !important
, the styles are not showing up. What could be causing this issue?
Check out the demo here: https://codesandbox.io/s/custom-trigger-ant-design-demo-gw0kb?file=/StyleCascader.js:74-210