You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the CSS get's prefixed, the CSS format becomes invalid. This is because
'@Keyframes progressIndeterminate {
0% { left: -142px; }
100% { left: 0; }
}'
When the CSS get's prefixed, the CSS format becomes invalid. This is because
'@Keyframes progressIndeterminate {
0% { left: -142px; }
100% { left: 0; }
}'
becomes
'@Keyframes progressIndeterminate {
.pdfjs 0% { left: -142px; }
.pdfjs 100% { left: 0; }
}'.
Which is an invalid syntax. Please see this issue: https://github.com/substack/css-prefix/issues/6
The text was updated successfully, but these errors were encountered: