From b6772fe0087bd55caee56969c7c1d7fb97a1e5c3 Mon Sep 17 00:00:00 2001
From: Peter Hoppe
Date: Sun, 12 Feb 2023 00:42:59 +0100
Subject: [PATCH] css
---
src/components/InputForm.css | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/src/components/InputForm.css b/src/components/InputForm.css
index e251df5..ac9ef27 100644
--- a/src/components/InputForm.css
+++ b/src/components/InputForm.css
@@ -28,3 +28,22 @@ form
display: flex;
flex-direction: column;
}
+
+.InputForm button[type=submit]
+{
+ background-color: #aa0404;
+ color: white;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ height: 25px;
+ max-width: 100%;
+ width: auto;
+}
+
+.InputForm input
+{
+ max-width: 80vw;
+ min-width: 30vw;
+ width: 300px;
+}