From 8f6ff0ae79d3dfe88c9d12dc1952bf0824f0a32a Mon Sep 17 00:00:00 2001 From: Jack Date: Thu, 17 Dec 2020 18:36:39 +0000 Subject: [PATCH] adjusted result button placement on smaller screens --- src/sass/style.scss | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/sass/style.scss b/src/sass/style.scss index 866fafcd4..01febddd9 100644 --- a/src/sass/style.scss +++ b/src/sass/style.scss @@ -2977,6 +2977,17 @@ key { } } + #result { + .buttons { + grid-template-rows: 1fr 1fr; + #nextTestButton { + grid-column: 1/5; + width: 100%; + text-align: center; + } + } + } + #commandLine, #commandLineInput { width: 400px !important; @@ -3035,6 +3046,16 @@ key { #centerContent { padding: 1rem; } + #result { + .buttons { + grid-template-rows: 1fr 1fr 1fr; + #nextTestButton { + grid-column: 1/3; + width: 100%; + text-align: center; + } + } + } } .keymap {