Minor stylistic changes

This commit is contained in:
Moris Zen
2018-08-01 22:56:01 +02:00
parent 906f73b34f
commit ce3b366da2
4 changed files with 9 additions and 9 deletions

View File

@@ -25,7 +25,7 @@ const ContactPage = () => (
className="appearance-none block w-full bg-grey-lightest text-grey-darker border rounded py-3 px-4"
id="grid-first-name"
type="text"
placeholder="Jane"
placeholder="Name"
required
/>
</div>
@@ -41,7 +41,7 @@ const ContactPage = () => (
className="appearance-none block w-full bg-grey-lightest text-grey-darker border rounded py-3 px-4"
id="grid-last-name"
type="email"
placeholder="Doe"
placeholder="name@domain.com"
required
/>
</div>
@@ -57,17 +57,17 @@ const ContactPage = () => (
className="appearance-none block w-full bg-grey-lightest text-grey-darker border rounded py-3 px-4"
id="grid-last-name"
type="text"
placeholder="Doe"
placeholder="Message..."
required
/>
</div>
</div>
<button
className="w-full shadow bg-green hover:bg-green-light text-white font-bold py-2 px-4 rounded"
className="w-full shadow bg-teal hover:bg-teal-light text-white font-bold py-2 px-4 rounded"
type="submit"
>
Send Mail
Send
</button>
</form>