From 0bc4498f603a01b4429df0198713bdf47061a128 Mon Sep 17 00:00:00 2001 From: Carter Myers <206+cmyers@users.noreply.github.mieweb.com> Date: Tue, 4 Nov 2025 09:34:04 -0700 Subject: [PATCH] Add styling for email and date input fields Extended the CSS to include styles for input[type="email"] and input[type="date"] so they match the appearance of other form fields. --- create-a-container/public/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/create-a-container/public/style.css b/create-a-container/public/style.css index 95fd47b4..3927ab3c 100644 --- a/create-a-container/public/style.css +++ b/create-a-container/public/style.css @@ -123,9 +123,12 @@ label { text-align: left; } +/* Added email and date field styling */ input[type="text"], input[type="password"], input[type="number"], +input[type="email"], +input[type="date"], textarea, select { width: 100%;