From 7c80aacf428d8e773bf3484a41ee7a981f1278f4 Mon Sep 17 00:00:00 2001 From: primakov Date: Wed, 30 Nov 2022 12:21:43 +0300 Subject: [PATCH] fix max keyboard width & height --- src/components/keyboard.style.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/keyboard.style.ts b/src/components/keyboard.style.ts index 21c127d..dfa2a84 100644 --- a/src/components/keyboard.style.ts +++ b/src/components/keyboard.style.ts @@ -36,7 +36,9 @@ export const BackspaceBtn = styled.img` export const Key = styled.button` margin: 4px; width: 8vw; + max-width: 100px; height: 7vw; + max-height: 100px; min-height: 40px; font-size: 24px; display: flex;