Hermes 284313f908
Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

69 lines
2.0 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>UI Kit Showcase</title>
<style>
:root {
color-scheme: light dark;
/* Defaults overridden by host theme via postMessage bridge */
--alga-bg: #ffffff;
--alga-fg: #0f172a;
--alga-muted: #f8fafc;
--alga-muted-fg: #64748b;
--alga-border: #e2e8f0;
--alga-border-light: #f1f5f9;
--alga-card-bg: #ffffff;
--alga-radius: 8px;
--alga-primary: #8a4dea;
--alga-primary-foreground: #f6f0fe;
--alga-primary-light: #dcc5fb;
--alga-primary-dark: #7c45d3;
--alga-primary-50: #f6f0fe;
--alga-primary-100: #ede2fd;
--alga-primary-soft: #f6f0fe;
--alga-primary-soft-fg: #6e3dbb;
--alga-primary-soft-hover: #ede2fd;
--alga-primary-border: #caa8f9;
--alga-secondary: #40cff9;
--alga-secondary-foreground: #ecfcfe;
--alga-secondary-light: #66dffb;
--alga-accent: #ff9c30;
--alga-accent-foreground: #fff6e6;
--alga-success: #22c55e;
--alga-warning: #f59e0b;
--alga-danger: #ef4444;
--alga-danger-dark: #dc2626;
--alga-ring: 0 0% 0%;
--alga-row-even: #f8fafc;
--alga-row-odd: #ffffff;
--alga-row-hover: #f6f0fe;
}
body {
margin: 0;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
background: var(--alga-bg);
color: var(--alga-fg);
font-size: 14px;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* { box-sizing: border-box; }
#root { min-height: 100vh; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="./dist/iframe/main.js"></script>
</body>
</html>