mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-15 17:12:59 -04:00
awawawa
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user