Skip to content

Commit 6ed6218

Browse files
authored
fix(material/tabs): incorrect animation variable name (#32941)
Fixes that after #32869, we had a reference to a variable that no longer exists.
1 parent c2cb1ab commit 6ed6218

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/material/tabs/_tabs-common.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ $mat-tab-animation-duration: 500ms !default;
6060
}
6161

6262
.mdc-tab-indicator__content {
63-
transition: var(--mat-tab-animation-duration, 250ms) transform cubic-bezier(0.4, 0, 0.2, 1);
63+
transition: var(--mat-tab-header-animation-duration, 250ms)
64+
transform cubic-bezier(0.4, 0, 0.2, 1);
6465
transform-origin: left;
6566
opacity: 0;
6667
}

0 commit comments

Comments
 (0)