This commit is contained in:
legop3
2026-05-19 21:29:51 -04:00
parent 03929822e6
commit e11361b5d5
3 changed files with 6 additions and 6 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -11,7 +11,7 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Roomba Rover" />
<title>Roomba Rover</title>
<script type="module" crossorigin src="/assets/index-B6iybFTB.js"></script>
<script type="module" crossorigin src="/assets/index-BWZIF1Sp.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-jwQkh99Y.css">
</head>
<body>
@@ -21,21 +21,21 @@ export default function OverseerPreferencePanel() {
};
return (
<section className="surface p-1 text-xs text-slate-200">
<label className="flex items-center gap-1.5">
<section className="surface p-1 text-xs text-slate-200 text-center">
<label className="flex items-center justify-center gap-1.5">
<input type="checkbox" checked={enabled} onChange={onToggle} />
<span>Enable Overseer LLM</span>
</label>
<div className="mt-0.5 text-slate-400">
Yes?: {Number(vote?.yesCount || 0)}, No!: {Number(vote?.noCount || 0)}
</div>
<div className="mt-0.5">
<div className="mt-0.5 flex justify-center">
<span
className={`inline-flex items-center rounded px-1.5 py-0.5 text-[0.7rem] font-medium ${
running ? 'bg-emerald-600/80 text-emerald-50' : 'bg-slate-600/70 text-slate-100'
}`}
>
{running ? 'running' : 'stopped'}
{running ? 'Running!' : 'Stopped...'}
</span>
</div>
</section>