Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions navigation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -574,16 +574,24 @@ You can use any combination of anchors, tabs, and dropdowns. The components can

## Breadcrumbs

Style pages with breadcrumbs to display the full navigation path at the top of pages.
Breadcrumbs display the full navigation path at the top of pages. Some themes have breadcrumbs enabled by default and others do not. You can control whether breadcrumbs are enabled for your site using the `styling` property in your `docs.json`.

```json
{
"styling": {
"eyebrows": "breadcrumbs"
}
<CodeGroup>

```json Display full breadcrumbs
"styling": {
"eyebrows": "breadcrumbs"
}
```

```json Display parent section only
"styling": {
"eyebrows": "section"
}
```

</CodeGroup>

## Interaction configuration

Control how users interact with navigation elements using the `interaction` property in your `docs.json`.
Expand Down