File tree Expand file tree Collapse file tree 2 files changed +0
-28
lines changed
packages/uui-base/lib/animations Expand file tree Collapse file tree 2 files changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,6 @@ import { css, unsafeCSS } from 'lit';
3
3
//this works and seems to be a good way to make keyframes reusable
4
4
5
5
export const UUIBlinkKeyframes = css `
6
- @-webkit-keyframes uui-blink {
7
- 0% {
8
- opacity : 1 ;
9
- }
10
- 50% {
11
- opacity : 0.5 ;
12
- }
13
- 100% {
14
- opacity : 1 ;
15
- }
16
- }
17
6
@keyframes uui-blink {
18
7
0% {
19
8
opacity : 1 ;
Original file line number Diff line number Diff line change @@ -3,23 +3,6 @@ import { css, unsafeCSS } from 'lit';
3
3
//this works and seems to be a good way to make keyframes reusable
4
4
5
5
export const UUIHorizontalPulseKeyframes = css `
6
- @-webkit-keyframes pulse {
7
- 0% {
8
- -webkit-transform : translate (-50% , -50% ) scale (0.2 );
9
- transform : translate (-50% , -50% ) scale (0.2 );
10
- opacity : 0.9 ;
11
- }
12
- 80% {
13
- -webkit-transform : translate (-50% , -50% ) scale (1.2 );
14
- transform : translate (-50% , -50% ) scale (1.2 );
15
- opacity : 0 ;
16
- }
17
- 100% {
18
- -webkit-transform : translate (-50% , -50% ) scale (2.2 );
19
- transform : translate (-50% , -50% ) scale (2.2 );
20
- opacity : 0 ;
21
- }
22
- }
23
6
@keyframes pulse {
24
7
0% {
25
8
-webkit-transform : translate (-50% , -50% ) scale (0.2 );
You can’t perform that action at this time.
0 commit comments