From 3d43512dab526002f11b465688619f05ab7468c7 Mon Sep 17 00:00:00 2001 From: Andrew Leonard Date: Wed, 21 Jun 2023 18:06:17 -0400 Subject: [PATCH] fix: css and missing onchange handler for token input --- src/pages/popup/components/login/Login.tsx | 2 ++ src/pages/popup/index.css | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/popup/components/login/Login.tsx b/src/pages/popup/components/login/Login.tsx index 227997b..fbae49b 100644 --- a/src/pages/popup/components/login/Login.tsx +++ b/src/pages/popup/components/login/Login.tsx @@ -68,6 +68,8 @@ export default function LoginComponent() { name="api-token" type="text" required + onChange={handleTokenChange} + value={apiToken} className="appearance-none relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-md diff --git a/src/pages/popup/index.css b/src/pages/popup/index.css index fcfcec1..c7a827e 100644 --- a/src/pages/popup/index.css +++ b/src/pages/popup/index.css @@ -15,7 +15,7 @@ body { .home-component { width: 600px; - height: 600px; + height: 400px; } .scrollbar::-webkit-scrollbar { width: 5px;