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 } }