This commit is contained in:
legop3
2026-01-28 14:16:06 -05:00
parent 2cc0ce962f
commit d87ec55802
6 changed files with 13 additions and 25 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="Multi Roomba Rover" />
<title>Multi Roomba Rover</title>
<script type="module" crossorigin src="/assets/index-Gqg6Q6EF.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-lg9md4T4.css">
<script type="module" crossorigin src="/assets/index-RTgSmBnh.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-CTaVJhzk.css">
</head>
<body>
<div id="root"></div>
+2 -9
View File
@@ -63,15 +63,8 @@ export default function ControlSummary() {
<TopDownMap sensors={sensors} />
</div>
</div>
<div className="grid h-full grid-rows-[1fr_1fr_auto] gap-0.5">
<div className="row-span-2">
<DriveDockAction
layout="desktop"
expand={hideInlineControls}
fill={!hideInlineControls}
driveDockState={driveDockState}
/>
</div>
<div className="grid h-full min-h-0 grid-rows-[minmax(0,1fr)_auto] gap-0.5">
<DriveDockAction layout="desktop" expand driveDockState={driveDockState} />
{!hideInlineControls ? <InlineCameraTilt keymap={keymap} /> : null}
</div>
</div>
+2 -7
View File
@@ -38,13 +38,8 @@ function DriveDockPanel() {
const hideInlineControls = driveDockState.docked && !driveDockState.driving;
return (
<section className="panel-section flex h-full flex-col gap-0.5">
<DriveDockAction
layout="desktop"
expand={hideInlineControls}
fill={!hideInlineControls}
driveDockState={driveDockState}
/>
<section className="panel-section grid h-full min-h-0 grid-rows-[minmax(0,1fr)_auto] gap-0.5">
<DriveDockAction layout="desktop" expand driveDockState={driveDockState} />
{!hideInlineControls ? <InlineCameraTilt keymap={keymap} /> : null}
</section>
);