fix: polish sidebar and masthead chrome, scroll setup preflight (#1522)

Remove redundant nav and label dots, move desktop masthead status to animated left rails, and let AuthCanvas scroll long preflight content on small viewports.
This commit is contained in:
Anso
2026-06-29 20:29:06 -04:00
committed by GitHub
parent da73ee0717
commit 322d337d20
8 changed files with 51 additions and 59 deletions
@@ -93,13 +93,13 @@ describe('StackRow', () => {
expect(screen.queryByText('UP')).not.toBeInTheDocument();
});
it('renders label indicators', () => {
it('does not render trailing label color dots when labels are assigned', () => {
const labels: Label[] = [
{ id: 1, node_id: 0, name: 'prod', color: 'teal' },
{ id: 2, node_id: 0, name: 'media', color: 'blue' },
];
const { container } = render(<StackRow {...base({ labels })} />);
expect(container.querySelectorAll('[style*="--label-"]')).toHaveLength(2);
expect(container.querySelectorAll('[style*="--label-"]')).toHaveLength(0);
});
// ── Image-update check status indicator ────────────────────────────────