Mission Control Dashboard - Initial implementation
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
import { pxValues } from '../../waapi/utils/px-values.mjs';
|
||||
|
||||
function applyPxDefaults(keyframes, name) {
|
||||
for (let i = 0; i < keyframes.length; i++) {
|
||||
if (typeof keyframes[i] === "number" && pxValues.has(name)) {
|
||||
keyframes[i] = keyframes[i] + "px";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export { applyPxDefaults };
|
||||
//# sourceMappingURL=apply-px-defaults.mjs.map
|
||||
Reference in New Issue
Block a user