diff --git a/src/theme/TOCItems/index.js b/src/theme/TOCItems/index.js new file mode 100644 index 0000000..4854b84 --- /dev/null +++ b/src/theme/TOCItems/index.js @@ -0,0 +1,21 @@ +import TOCItems from '@theme-original/TOCItems'; +import styles from './styles.module.css'; + +export default function TOCItemsWrapper(props) { + return ( + <> + +
+ Need more help? + + Contact Support + +
+ + ); +} diff --git a/src/theme/TOCItems/styles.module.css b/src/theme/TOCItems/styles.module.css new file mode 100644 index 0000000..ad49382 --- /dev/null +++ b/src/theme/TOCItems/styles.module.css @@ -0,0 +1,14 @@ +.contactSupportLinkWrapper { + display: flex; + flex-direction: column; + justify-content: start; + align-items: start; + gap: 0.5rem; + margin: 1rem; +} + +.contactSupportLink { + font-size: var(--ifm-h4-font-size); + font-weight: var(--ifm-heading-font-weight); + text-align: center; +}