Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 09f8525

Browse files
amend(ripple): undoes previous commit
1 parent b42b958 commit 09f8525

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/tabs/_tabs.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ md-tabs-ink-bar {
100100
transition: transform 0.5s $swift-ease-in-out-timing-function;
101101
transform-origin: 0 0;
102102
md-tabs-ink-bar-inner {
103-
transition: transform 0.5s $swift-ease-out-timing-function;
103+
transition: transform 0.25s $swift-ease-out-timing-function;
104104
transform: scaleX(1);
105105
transform-origin: 50% 50%;
106106
position: absolute;
@@ -111,7 +111,7 @@ md-tabs-ink-bar {
111111
}
112112
&.md-ink-bar-grow {
113113
md-tabs-ink-bar-inner {
114-
transition: transform 0.5s $swift-ease-in-timing-function;
114+
transition: transform 0.25s $swift-ease-in-timing-function;
115115
transform: scaleX(1.35);
116116
}
117117
}

src/components/tabs/js/inkBarDirective.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function MdTabInkDirective($mdConstant, $window, $$rAF, $timeout) {
4545
if (timeout) $timeout.cancel(timeout);
4646
timeout = $timeout(function () {
4747
element.removeClass('md-ink-bar-grow');
48-
}, 500, false);
48+
}, 250, false);
4949

5050
}
5151
}

0 commit comments

Comments
 (0)