moving a LOT of stuff around in web ui

This commit is contained in:
legop3
2026-08-02 23:06:30 -04:00
parent 3ebd1c7f9c
commit 15a60a58e6
45 changed files with 814 additions and 870 deletions
@@ -2,6 +2,7 @@
// Purpose: Renders remote rover servers discovered through the inter-instance directory.
// Scope: Owns external server metadata presentation while reusing RoverQueuesPanel for rover/queue rows.
import { useMemo } from 'react';
import './styles.css';
import { useSessionSelector } from '../../context/SessionContext.jsx';
import CardFrame from '../CardFrame/index.jsx';
import RoverQueuesPanel from '../RoverQueuesPanel/index.jsx';
@@ -0,0 +1,7 @@
.inter-instance-overlay-frame { max-width: calc(100vw - .5rem); }
.inter-instance-overlay-body { max-height: 82vh; }
@media (min-width: 1024px) {
.inter-instance-overlay-scale { zoom: 1.5; }
.inter-instance-overlay-frame { max-width: calc((100vw - .5rem) / 1.5); }
.inter-instance-overlay-body { max-height: 54.6667vh; }
}