From 6acc6b22a547d3b273887440cd5d852ae1240570 Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Tue, 16 Apr 2019 20:24:51 +0100
Subject: [PATCH] Update form styling

---
 .../src/css/components/forms.css                           | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/wp-content/themes/twentynineteen-tailwindcss/src/css/components/forms.css b/wp-content/themes/twentynineteen-tailwindcss/src/css/components/forms.css
index b9c2167..be00372 100644
--- a/wp-content/themes/twentynineteen-tailwindcss/src/css/components/forms.css
+++ b/wp-content/themes/twentynineteen-tailwindcss/src/css/components/forms.css
@@ -1,6 +1,6 @@
 textarea,
 input[type=search] {
-  @apply border border-gray-400 p-2;
+  @apply border border-gray-400 p-2 mb-2;
 
   &:focus {
     @apply outline-none bg-gray-100
@@ -12,10 +12,11 @@ input[type=search] {
 }
 
 input[type=submit] {
-  @apply bg-blue-600 py-2 px-4 rounded text-white block mt-2 text-sm font-bold;
+  @apply bg-blue-700 text-white block text-lg font-bold cursor-pointer;
+  @apply py-3 px-6 rounded mt-2;
 
   &:hover,
   &:focus {
-    @apply bg-blue-700
+    @apply bg-blue-800
   }
 }