mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
fix positioning of active tab indicator (#695)
This commit is contained in:
@@ -297,7 +297,7 @@ export default class SlTabGroup extends LitElement {
|
||||
|
||||
// offsetLeft/offsetTop cannot be used directly here due to a shadow parent issue: https://bugs.chromium.org/p/chromium/issues/detail?id=920069
|
||||
// neither can getBoundingClientRect as it gives invalid values for animating elements
|
||||
const allTabs = this.getAllTabs();
|
||||
const allTabs = this.getAllTabs(true);
|
||||
const precedingTabs = allTabs.slice(0, allTabs.indexOf(currentTab));
|
||||
const offset = precedingTabs.reduce(
|
||||
(previous, current) => ({
|
||||
|
||||
Reference in New Issue
Block a user