Skip to content

Commit f2a85bd

Browse files
committed
remove unnesecary webkit prefixed animations
1 parent e46af23 commit f2a85bd

File tree

2 files changed

+0
-28
lines changed

2 files changed

+0
-28
lines changed

packages/uui-base/lib/animations/uui-blink.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,6 @@ import { css, unsafeCSS } from 'lit';
33
//this works and seems to be a good way to make keyframes reusable
44

55
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-
}
176
@keyframes uui-blink {
187
0% {
198
opacity: 1;

packages/uui-base/lib/animations/uui-pulse.ts

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,6 @@ import { css, unsafeCSS } from 'lit';
33
//this works and seems to be a good way to make keyframes reusable
44

55
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-
}
236
@keyframes pulse {
247
0% {
258
-webkit-transform: translate(-50%, -50%) scale(0.2);

0 commit comments

Comments
 (0)