diff --git a/src/components/tabs/tabs.ts b/src/components/tabs/tabs.ts index af29e8833..a85d4de24 100644 --- a/src/components/tabs/tabs.ts +++ b/src/components/tabs/tabs.ts @@ -493,7 +493,7 @@ export class CoreTabsComponent implements OnInit, AfterViewInit, OnChanges, OnDe } const scroll = parseInt(scrollElement.scrollTop, 10); - if (scroll == 0) { + if (scroll <= 0) { // Ensure tabbar is shown. this.topTabsElement.style.transform = ''; this.originalTabsContainer.style.transform = '';