From 5a9f683d998baaac192edf60afdeef9c4879cb49 Mon Sep 17 00:00:00 2001 From: q9i <46249765+quantum9Innovation@users.noreply.github.com> Date: Fri, 8 Apr 2022 13:57:20 -0700 Subject: [PATCH] Fix keyboard position on screen For smaller screens (e.g. mobile) --- App/index.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/App/index.css b/App/index.css index ac4cc40..af5bc74 100644 --- a/App/index.css +++ b/App/index.css @@ -21,7 +21,6 @@ body { padding: 0px; height: 100vh; width: 100vw; - overflow: hidden; } button { @@ -655,6 +654,8 @@ button { } #keyboard { + position: absolute; + bottom: 5vh; width: 67vw; height: 20vh; display: block; @@ -832,6 +833,8 @@ button { } #keyboard { + position: absolute; + bottom: 5vh; width: 80vw; height: 20vh; display: block;