Open
Description
Describe the bug
When the browser viewport is not high enough to fit the entire sidebar contents, the last item gets hidden behind the "API docs by Redocly" banner at the bottom of the sidebar.
Expected behavior
All sidebar items should be visible
Screenshots
Additional context
I worked around the issue by including this extra bit of CSS to our site:
redoc ul[role="menu"] {
/* fix last item being hidden behind the redoc banner on smaller viewports */
padding-bottom: 32px;
}