styling changes and disable beep boop

This commit is contained in:
legop3
2026-05-17 21:45:13 -04:00
parent f6f985d740
commit 03bf356de2
6 changed files with 16 additions and 15 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -11,8 +11,8 @@
<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-DBkeJzWB.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-CkqCBh_q.css">
<script type="module" crossorigin src="/assets/index-CGtfPaCb.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-57OQQPV8.css">
</head>
<body>
<div id="root"></div>
@@ -39,17 +39,17 @@ function ManualDockAssistOverlay({ mobileHud = false }) {
if (!visible) return null;
const toneClass =
statusTone === 'good'
? 'border-emerald-200/70 bg-emerald-900/85 text-emerald-50'
? 'border-emerald-200/85 bg-emerald-900/96 text-emerald-50'
: statusTone === 'warn'
? 'border-amber-200/70 bg-amber-900/85 text-amber-50'
: 'border-indigo-200/70 bg-indigo-900/85 text-indigo-50';
? 'border-amber-200/85 bg-amber-900/96 text-amber-50'
: 'border-indigo-200/85 bg-indigo-900/96 text-indigo-50';
return (
<div className="pointer-events-none absolute inset-0">
{popupMessage ? (
<div className="absolute inset-0 flex items-center justify-center">
<div
className={`rounded-xl border border-indigo-200/70 bg-indigo-900/88 px-4 py-2 text-center font-semibold text-indigo-50 shadow-2xl ${
className={`rounded-xl border border-indigo-200/90 bg-indigo-950/98 px-4 py-2 text-center font-semibold text-indigo-50 shadow-2xl ${
mobileHud ? 'text-lg' : 'text-2xl'
}`}
>
+1
View File
@@ -533,6 +533,7 @@ export function ControlSystemProvider({ children }) {
if (prevActive === nextActive) return;
dispatch({ type: 'control/set-manual-dock-assist', payload: nextActive });
if (!nextActive) {
pipeline.sendSong([{ note: 83, duration: 10 }, { note: 76, duration: 10 }], { slot: 0 });
setServoAngle(0, { force: true });
return;
}