From 27b41cd5ac52ada7ed2b591c607944524e8f634d Mon Sep 17 00:00:00 2001 From: Matthew Landauer Date: Thu, 26 Oct 2023 23:23:05 +0000 Subject: [PATCH] Make grey border match --- app/views/_tailwind/contact_messages/_form.html.erb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/_tailwind/contact_messages/_form.html.erb b/app/views/_tailwind/contact_messages/_form.html.erb index c5b2c9519..a424fbf57 100644 --- a/app/views/_tailwind/contact_messages/_form.html.erb +++ b/app/views/_tailwind/contact_messages/_form.html.erb @@ -19,8 +19,9 @@ <%# TODO: Extract style of select into form builder %> <%# TODO: Make sure that we can't choose "Please select" %> <%# TODO: Get rid of the blue hover state in the select %> + <%# TODO: The grey border here does not match the design but matches other form elements %> <%= f.select :reason, [["Please select", ""]] + ContactMessage::REASONS_LONG, {}, - class: "block text-navy text-2xl active:bg-light-grey" %> + class: "block text-navy text-2xl border-light-grey2" %> <%= f.error :reason, class: "mt-2" %>