From e794340570bd721a02d12cd551818ad490f3007b Mon Sep 17 00:00:00 2001 From: Roy Olav Purser Date: Thu, 13 May 2021 11:31:16 +0200 Subject: [PATCH] scale based on input method --- frontend/style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/style.css b/frontend/style.css index f75ffe4..1b87526 100644 --- a/frontend/style.css +++ b/frontend/style.css @@ -1,8 +1,11 @@ body { margin: 0px; } -@media screen and (max-width: 500px) { +.video-js { + font-size: 1rem; +} +@media (pointer:coarse) { .video-js { - font-size: 2rem; + font-size: 3rem; } }