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
@@ -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;
}