From a874dfc4b81fec3ca24227c0ce8f93861c825602 Mon Sep 17 00:00:00 2001 From: Lewis England Date: Mon, 22 May 2023 15:58:05 +0100 Subject: [PATCH] style: make the form textbox match the Homepage theme --- src/components/tasklist/taskbox.jsx | 7 ++++--- src/styles/globals.css | 4 ++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/components/tasklist/taskbox.jsx b/src/components/tasklist/taskbox.jsx index 2c68d6b5..a979252f 100644 --- a/src/components/tasklist/taskbox.jsx +++ b/src/components/tasklist/taskbox.jsx @@ -13,9 +13,10 @@ export default function TaskBox({submitAction}) { } return ( -
-
- setFormVal(e.target.value)} /> +
+
+
+ + setFormVal(e.target.value)} />
); diff --git a/src/styles/globals.css b/src/styles/globals.css index 56d64a06..fa3f9846 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -61,4 +61,8 @@ body { .checkbox { border-radius: 0.25em; +} + +.textinput { + border: none; } \ No newline at end of file