From 6c3ae1f9148be3a0193a7d0e24f58a506e9dccda Mon Sep 17 00:00:00 2001 From: Carlos Valente Date: Sat, 22 Feb 2025 19:55:37 +0100 Subject: [PATCH] refactor: show schedule in smaller screens --- apps/client/src/views/backstage/Backstage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/views/backstage/Backstage.tsx b/apps/client/src/views/backstage/Backstage.tsx index 6795a5db1..6d2c4c38b 100644 --- a/apps/client/src/views/backstage/Backstage.tsx +++ b/apps/client/src/views/backstage/Backstage.tsx @@ -92,7 +92,7 @@ export default function Backstage(props: BackstageProps) { // gather presentation styles const qrSize = Math.max(window.innerWidth / 15, 72); const showProgress = getShowProgressBar(time.playback); - const showSchedule = hasEvents && screenHeight > 700; // in vertical screens we may not have space + const showSchedule = hasEvents && screenHeight > 420; // in vertical screens we may not have space // gather option data const defaultFormat = getDefaultFormat(settings?.timeFormat);