first 3D model
All checks were successful
Deploy App / deploy (push) Successful in 1m18s

This commit is contained in:
valere
2025-09-17 23:39:43 +02:00
parent 116d15d1ce
commit 0c1cf30996
28 changed files with 1384 additions and 63 deletions

6
app/utils/cssVars.js Normal file
View File

@@ -0,0 +1,6 @@
// utils/cssVars.js
export function updateCssVar(name, value, el) {
// if (!import.meta.client) return;
const target = el?.$el || el || document.documentElement;
target.style.setProperty(name, value);
}