Prioritize workspace on mobile

This commit is contained in:
2026-08-05 14:18:03 +02:00
parent 67c0a37e2a
commit 931be30eba
3 changed files with 6 additions and 2 deletions
+2
View File
@@ -32,6 +32,8 @@ test("catalog maker remains usable on a narrow viewport", async ({ page }) => {
await expect(page.locator("#findSourcesButton")).toBeVisible();
await expect(page.locator("#settingsButton")).toBeVisible();
await expect(page.locator("#sidebarOverlay")).toBeVisible();
await expect(page.locator(".main-workspace")).toHaveCSS("order", "1");
await expect(page.locator(".secondary-panel")).toHaveCSS("order", "2");
await page.screenshot({ path: "test-results/catalog-maker-mobile.png", fullPage: true });
});