Skip to content

Commit

Permalink
chore: improve styling
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicGBauer committed Nov 28, 2023
1 parent 2f40903 commit b381444
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
37 changes: 37 additions & 0 deletions styles/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
.tsd-kind-icon {
display: none;
}

.tsd-nested-navigation {
margin-left: 2rem;
}

.tsd-accordion-summary {
font-weight: bold;
}

.tsd-accordion-summary h3,
.tsd-nested-navigation .tsd-accordion-summary,
.tsd-small-nested-navigation .tsd-accordion-summary {
display: flex;
align-items: center;
}

.tsd-accordion-details .tsd-accordion-summary span {
font-weight: normal;
text-transform: uppercase;
}

.tsd-nested-navigation .tsd-kind-icon~span,
.tsd-accordion-details span {
color: var(--color-link);
}

.tsd-nested-navigation a,
.tsd-accordion-details a {
color: var(--color-link);
}

.tsd-page-navigation ul {
padding-left: 1rem;
}
8 changes: 7 additions & 1 deletion typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
],
"name": "PowerSync React Native SDK Docs",
"entryPointStrategy": "packages",
"includeVersion": false
"includeVersion": false,
"hideGenerator": true,
"navigation": {
"includeCategories": false,
"includeGroups": true
},
"customCss": "./styles/custom.css"
// Potentially useful for debugging
// "logLevel": "Verbose"
}

0 comments on commit b381444

Please sign in to comment.