On /reader/:bookId, the top of the reader (its toolbar, including the close/back control) is hidden beneath the global app-menu-bar, which is position: fixed. You can't cleanly reach the reader's own close button.
Root cause
reader-shell.component.scss sets :host { height: 100vh } at top: 0 and never reserves the fixed header's strip. The rest of the app subtracts the shared --app-toolbar-height token (64px desktop / 56px mobile, auto-flipped at the 767px breakpoint) — e.g. video-call, space-game — but the reader shell didn't.
Fix
reader-shell:host: box-sizing: border-box; height: 100vh; padding-top: var(--app-toolbar-height, 64px); overflow: hidden — same proven pattern as video-call (ref issue #95). Covers both the EPUB and PDF readers (both render inside the shell).
## Symptom
On `/reader/:bookId`, the top of the reader (its toolbar, including the **close/back** control) is hidden beneath the global `app-menu-bar`, which is `position: fixed`. You can't cleanly reach the reader's own close button.
## Root cause
`reader-shell.component.scss` sets `:host { height: 100vh }` at `top: 0` and never reserves the fixed header's strip. The rest of the app subtracts the shared `--app-toolbar-height` token (64px desktop / 56px mobile, auto-flipped at the 767px breakpoint) — e.g. `video-call`, `space-game` — but the reader shell didn't.
## Fix
`reader-shell` `:host`: `box-sizing: border-box; height: 100vh; padding-top: var(--app-toolbar-height, 64px); overflow: hidden` — same proven pattern as `video-call` (ref issue #95). Covers both the EPUB and PDF readers (both render inside the shell).
Fix PR: spikersoft-angular (branch `fix/reader-toolbar-header-offset`).
Resolved in spikersoft-angular PR #219 (merged to master). The reader shell now reserves the fixed app-menu-bar strip (box-sizing: border-box + padding-top: var(--app-toolbar-height)), so the reader toolbar/close button clears the header on desktop and mobile. Closing.
Resolved in spikersoft-angular PR #219 (merged to `master`). The reader shell now reserves the fixed `app-menu-bar` strip (`box-sizing: border-box` + `padding-top: var(--app-toolbar-height)`), so the reader toolbar/close button clears the header on desktop and mobile. Closing.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Symptom
On
/reader/:bookId, the top of the reader (its toolbar, including the close/back control) is hidden beneath the globalapp-menu-bar, which isposition: fixed. You can't cleanly reach the reader's own close button.Root cause
reader-shell.component.scsssets:host { height: 100vh }attop: 0and never reserves the fixed header's strip. The rest of the app subtracts the shared--app-toolbar-heighttoken (64px desktop / 56px mobile, auto-flipped at the 767px breakpoint) — e.g.video-call,space-game— but the reader shell didn't.Fix
reader-shell:host:box-sizing: border-box; height: 100vh; padding-top: var(--app-toolbar-height, 64px); overflow: hidden— same proven pattern asvideo-call(ref issue #95). Covers both the EPUB and PDF readers (both render inside the shell).Fix PR: spikersoft-angular (branch
fix/reader-toolbar-header-offset).Resolved in spikersoft-angular PR #219 (merged to
master). The reader shell now reserves the fixedapp-menu-barstrip (box-sizing: border-box+padding-top: var(--app-toolbar-height)), so the reader toolbar/close button clears the header on desktop and mobile. Closing.