We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d918463 commit fb099a5Copy full SHA for fb099a5
src/scripts/BreadCrumbs.tsx
@@ -18,10 +18,7 @@ export const Crumb: FC<CrumbProps> = ({
18
...props
19
}) => {
20
const text = children;
21
- const cClassName = classnames(
22
- 'slds-list__item slds-text-heading_label',
23
- className
24
- );
+ const cClassName = classnames('slds-breadcrumb__item', className);
25
26
return (
27
<li {...props} className={cClassName}>
@@ -44,7 +41,9 @@ export const BreadCrumbs: FC<BreadCrumbsProps> = ({
44
41
45
42
46
43
const oClassName = classnames(
47
- 'slds-breadcrumb slds-list_horizontal',
+ 'slds-breadcrumb',
+ 'slds-list_horizontal',
+ 'slds-wrap',
48
className
49
);
50
0 commit comments