so I have a breadcrumb component that I've used with react-bootstrap. I need to override the default separator with ">". But it did not override anything. Could anyone help with this?
Breadcrumb:
<Breadcrumb>
<Breadcrumb.Item onClick={goTo('/')}>Home</Breadcrumb.Item>
<Breadcrumb.Item onClick={goTo(`/store`)}>
{store?.name || 'unknown'}s
</Breadcrumb.Item>
<Breadcrumb.Item active>{title}</Breadcrumb.Item>
</Breadcrumb>
CSS:
.breadcrumb-item+.breadcrumb-item::before { content: ">" !important; }