From 644900aa982ff663c61b5aaf51cade71e511dd23 Mon Sep 17 00:00:00 2001 From: looskie <50378828+Looskie@users.noreply.github.com> Date: Fri, 25 Jun 2021 23:34:00 -0400 Subject: [PATCH] Fix: Input width fix on smaller screen sizes --- pages/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pages/index.tsx b/pages/index.tsx index 52ee44a..ff7d0fd 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -130,6 +130,8 @@ const Input = styled.input` text-align: left; border-radius: 8px; border: none; + width: 80%; + max-width: 250px; margin: 0 25px 15px; font-size: 1em; padding: 5px 10px;