-
如何隐藏某个页面页脚的prepage、nextpage?有些页面不需要展示 |
Beta Was this translation helpful? Give feedback.
Answered by
SoonIter
Mar 29, 2025
Replies: 2 comments 5 replies
-
refer to https://github.com/callstack/repack/blob/2eb2c88921caac4bf3e648b1f92e74f0f644268d/website/theme/index.tsx#L97 to customize it in your theme. |
Beta Was this translation helpful? Give feedback.
5 replies
-
In MDX, it can be written like this. mdx 里可以这么写 <style >
{`
.rspress-doc-footer {
display: none;
}
`}
</style> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
SoonIter
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In MDX, it can be written like this.
mdx 里可以这么写