The pagination arrows for paper-tabs are always visible, even when there is enough space to display every tab.
this.set('shouldPaginate', wrapperWidth > canvasWidth); is always returning true due to
let wrapperWidth = this.element.querySelector('md-pagination-wrapper').offsetWidth; always return 999999
Overriding md-pagination-wrapper { width: auto !important } causes wrapperWidth == canvasWidth so the pagination controls don't show up when needed
The pagination arrows for paper-tabs are always visible, even when there is enough space to display every tab.
this.set('shouldPaginate', wrapperWidth > canvasWidth);
is always returning true due tolet wrapperWidth = this.element.querySelector('md-pagination-wrapper').offsetWidth;
always return 999999 Overridingmd-pagination-wrapper { width: auto !important }
causes wrapperWidth == canvasWidth so the pagination controls don't show up when needed