feat: clean up apps and add publish
All checks were successful
Release / build_test (pull_request) Successful in 51s

This commit is contained in:
2025-11-30 20:15:41 +01:00
parent 134dc79f3c
commit fb5471c177
27 changed files with 137 additions and 1272 deletions

View File

@@ -1,5 +1,5 @@
import { unsafeCSS } from 'lit';
export function variable(variableName: string, defaultValue?: string) {
export function variable(variableName: `--${string}`, defaultValue?: string) {
return unsafeCSS(`var(${variableName}${defaultValue ? `, ${defaultValue}` : ''})`);
}