diff --git a/packages/app-shell/src/app-shell.js b/packages/app-shell/src/app-shell.js index 0093bd204c26650b477e9074ce256da4233fc671..c7418da95fc2c2c386d820b1ddbab170c2e310ef 100644 --- a/packages/app-shell/src/app-shell.js +++ b/packages/app-shell/src/app-shell.js @@ -420,7 +420,7 @@ export class AppShell extends ScopedElementsMixin(LitElement) { let topValue = 45.5; // if menu is not in sticky position the top value must be calculated if (window.pageYOffset < 96) { - topValue = 142.5 - window.pageYOffset; + topValue = 141.5 - window.pageYOffset; } menu.setAttribute('style', 'position: fixed;top: ' + topValue + 'px;bottom: 0;border-bottom: 0;'); menu.scrollTop = 0;