Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions fern/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ layout:
searchbar-placement: header
tabs-placement: header

theme:
page-actions: toolbar

settings:
http-snippets:
- curl
Expand Down
24 changes: 24 additions & 0 deletions fern/products/docs/pages/customization/site-level-settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -688,6 +688,30 @@ page-actions:
When enabled, displays an "Open in VS Code" button that allows users to open the page content in Visual Studio Code for editing and development.
</ParamField>

## Theme configuration

Configure the visual styling of various documentation elements throughout your site.

```yaml docs.yml
theme:
page-actions: toolbar
footer-nav: minimal
```

<ParamField path="theme.page-actions" type="enum" required={false} toc={true}>
Controls the visual style of page action buttons. Options:

- `default`: Standard page actions appearance with buttons displayed in the default style
- `toolbar`: Toolbar-style appearance that displays page actions in a more compact, toolbar-like format
</ParamField>

<ParamField path="theme.footer-nav" type="enum" required={false} toc={true}>
Controls the visual style of the footer navigation (previous/next page links). Options:

- `default`: Standard footer navigation appearance
- `minimal`: Minimalist footer navigation style with reduced visual elements
</ParamField>

## GitHub configuration

<Tabs>
Expand Down