From 367f74dc272ca2de0a4935af9766acd880149d82 Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Wed, 29 Jul 2020 19:47:26 -0400 Subject: [PATCH] Limit the remote screen view to 85% of the browser's width (#102) --- app/static/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/css/style.css b/app/static/css/style.css index 00ee0b2d8..1b8862e12 100644 --- a/app/static/css/style.css +++ b/app/static/css/style.css @@ -145,7 +145,7 @@ button:active { } #remote-screen { - max-width: 1920px; + max-width: 85%; max-height: 1080px; margin-left: auto; margin-right: auto;