From fe072595ed2e7eb061b0148967e6f686fb6272a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Geonizeli?= Date: Mon, 9 Aug 2021 23:13:05 -0300 Subject: [PATCH] fix primary button color --- app/helpers/tailwind_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/tailwind_helper.rb b/app/helpers/tailwind_helper.rb index 49477e7..2aa8b11 100644 --- a/app/helpers/tailwind_helper.rb +++ b/app/helpers/tailwind_helper.rb @@ -11,7 +11,7 @@ module TailwindHelper end def primary_button_classes - "#{base_button_classes} bg-purple-600 hover:bg-purple-700 focus:ring-purple-500 focus:ring-offset-purple-200 text-white w-full transition ease-in duration-200 text-center text-base font-semibold shadow-md focus:outline-none focus:ring-2 focus:ring-offset-2 rounded-lg" + "#{base_button_classes} bg-blue-600 hover:bg-blue-700 focus:ring-blue-500 focus:ring-offset-blue-200 text-white w-full transition ease-in duration-200 text-center text-base font-semibold shadow-md focus:outline-none focus:ring-2 focus:ring-offset-2 rounded-lg" end end end