Putting a <Breadcrumbs /> in a div with overflow: auto set causes it to be wrongly positioned. Example:
<div style={{overflow: 'auto'}}>
<Breadcrumbs items={[
{text: 'T'},
{text: 'path'},
{text: 'root'},
{text: 'long'},
{text: 'some'},
{text: 'some long test string some long test string some long test string some long test string some long test string '},
]} />
</div>
Putting a
<Breadcrumbs />
in a div withoverflow: auto
set causes it to be wrongly positioned. Example: