Skip to content

Commit

Permalink
Add sidebar setting
Browse files Browse the repository at this point in the history
  • Loading branch information
scottafk committed Mar 19, 2024
1 parent 1b90f43 commit 68be8ed
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/concepts/about-the-platform.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,16 @@
- [CLB creation](#clb-creation)
- [CLB usage](#clb-usage)

export const Highlight = ({children}) => ( <span style={{
export const Highlight = ({children}) => (
<span
style={{
borderRadius: '2px',
color: 'red',
padding: '0.2rem',
}}> {children} </span> );
}}>
{children}
</span>
);

## Features {#features}

Expand Down
6 changes: 6 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ const config: Config = {
themeConfig: {
// Replace with your project's social card
image: 'img/docusaurus-social-card.jpg',
docs: {
sidebar: {
hideable: true,
autoCollapseCategories: true,
},
},
navbar: {
title: 'IBAX Documentation',
logo: {
Expand Down

0 comments on commit 68be8ed

Please sign in to comment.