From 31ee7b33328973af3dd54841297dc21237a03cf3 Mon Sep 17 00:00:00 2001 From: Yann Lerjen Date: Mon, 6 Jan 2020 16:55:32 +0100 Subject: [PATCH] bugfix/#248 fix container height width --- src/hotkeys.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/hotkeys.css b/src/hotkeys.css index 0ad9a8c..fc2e034 100644 --- a/src/hotkeys.css +++ b/src/hotkeys.css @@ -37,8 +37,9 @@ body.cfp-hotkeys-visible { } .cfp-hotkeys { - width: 100%; - height: 100%; + height: 100vh; + width: 100vw; + padding: 20px; display: table-cell; vertical-align: middle; }