From 0ba1f00e74540bd6f19798bde199836765d89bc6 Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Sun, 1 Mar 2026 21:13:06 +0300 Subject: [PATCH] Hide panels by default on mobile --- src/stores/editor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/editor.ts b/src/stores/editor.ts index 594bc88d5..75b64ab82 100644 --- a/src/stores/editor.ts +++ b/src/stores/editor.ts @@ -174,7 +174,7 @@ export function createEditorStore() { y: number selection?: string[] }>, - showUI: true, + showUI: matchMedia('(min-width: 768px)').matches, documentName: 'Untitled' as string, panX: 0, pageColor: { ...CANVAS_BG_COLOR } as Color,