Skip to content
Open
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
9 changes: 8 additions & 1 deletion customize/custom-scripts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,14 @@ Multiple instances of these elements can appear on a page. Use these as `value`
- `breadcrumb-item`: Individual breadcrumb item.
</Accordion>
<Accordion title="Topbar navigation">
- `nav-logo`: Logo in the navigation bar.
- `nav-logo`: Logo image in the navigation bar. To override its default size utilities, target `img.nav-logo` and use `!important`.

```css
img.nav-logo {
height: 3.75rem !important;
width: auto !important;
}
```
- `navbar-link`: Link element within the navigation bar.
- `nav-anchors`: Container for anchor links in the topbar.
- `nav-anchor`: Individual anchor link in the topbar.
Expand Down