We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This happens with both search-bar enabled and disabled.
The issue appears only when you navigate directly to the API page
Recreatable on every website under Who is using Redocusaurus?
Who is using Redocusaurus?
Steps to reproduce.
/doc
/examples/using-single-yaml/
The text was updated successfully, but these errors were encountered:
Create a file redocly.yaml with this configuration:
extends: - recommended rules: no-unused-components: error theme: openapi: requiredPropsFirst: true noAutoAuth: true hideDownloadButton: true onlyRequiredInSamples: true nativeScrollbars: true scrollYOffset: 60 theme: colors: primary: main: '#32329f'
and then setup presets in docusarus.config.ts
presets: [ [ "classic", { docs: { sidebarPath: "./sidebars.ts", }, theme: { customCss: "./src/css/custom.css", }, } satisfies Preset.Options, ], [ "redocusaurus", { config: path.join(__dirname, 'redocly.yaml'), specs: [ { spec: "./specs/swagger.json", route: "/api/", }, ], theme: { primaryColor: "#1890ff", }, }, ] satisfies Redocusaurus.PresetEntry, ]
This will solve your issue!
Sorry, something went wrong.
The salient part of the example above is this:
extends: - recommended theme: openapi: scrollYOffset: 60
Thanks @tkenda 👍
No branches or pull requests
This happens with both search-bar enabled and disabled.
The issue appears only when you navigate directly to the API page
Recreatable on every website under
Who is using Redocusaurus?
Steps to reproduce.
/doc
to/examples/using-single-yaml/
using navbar, No issue works as expected when navigating to API from a navbar item/examples/using-single-yaml/
, scroll, observe issue on sidebar.The text was updated successfully, but these errors were encountered: