From 9ef40193a7f6d88c32356f2f03ad255e92173cd4 Mon Sep 17 00:00:00 2001 From: Rijk van Zanten Date: Thu, 30 Dec 2021 16:17:39 -0500 Subject: [PATCH] Tweak minimal panel sizes (#10775) --- app/src/panels/list/index.ts | 4 ++-- app/src/panels/time-series/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/panels/list/index.ts b/app/src/panels/list/index.ts index f87e4fd0ea..ab03982338 100644 --- a/app/src/panels/list/index.ts +++ b/app/src/panels/list/index.ts @@ -95,6 +95,6 @@ export default definePanel({ }, }, ], - minWidth: 16, - minHeight: 12, + minWidth: 12, + minHeight: 6, }); diff --git a/app/src/panels/time-series/index.ts b/app/src/panels/time-series/index.ts index b265ab9da2..dd1292f930 100644 --- a/app/src/panels/time-series/index.ts +++ b/app/src/panels/time-series/index.ts @@ -335,6 +335,6 @@ export default definePanel({ }, }, ], - minWidth: 16, - minHeight: 8, + minWidth: 12, + minHeight: 6, });