Skip to content

Commit

Permalink
make easing of circular #progress more extreme
Browse files Browse the repository at this point in the history
  • Loading branch information
tujoworker committed May 21, 2019
1 parent 65328bd commit fb19b91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ exports[`Progress scss have to match snapshot 1`] = `
.dnb-progress__circular__line {
animation-duration: 2s;
animation-delay: 200ms;
animation-timing-function: linear;
animation-timing-function: ease-in-out;
animation-timing-function: cubic-bezier(0.67, 0.06, 0.27, 0.92);
animation-iteration-count: infinite; }
.dnb-progress__circular__line.background {
stroke-dashoffset: var(--progress-circular-circle-offset--max); }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
&__line {
animation-duration: 2s;
animation-delay: 200ms;
animation-timing-function: linear;
animation-timing-function: ease-in-out;
animation-timing-function: cubic-bezier(0.67, 0.06, 0.27, 0.92);
animation-iteration-count: infinite;
}

Expand Down

0 comments on commit fb19b91

Please sign in to comment.