It is caused by div with header-nav -expanded class which overlaps some of the top navigation links.
How to reproduce:
- Open https://docpress.github.io
- Open developer tools.
- Switch to responsive mode.
- Set device with to 500px.
- Try to click on docpress link on top of the page.
I'm currently using this css as a workaround:
.header-nav.-expanded {
pointer-events: none;
}
.header-nav.-expanded a {
pointer-events: auto;
}