From 1cda610fbf9af9aff11f0a7e790171d7f8b8e84f Mon Sep 17 00:00:00 2001 From: shibao Date: Sat, 5 Feb 2022 14:18:12 -0500 Subject: [PATCH] tweak alert button colors --- assets/css/components.scss | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/assets/css/components.scss b/assets/css/components.scss index a3c393d4..f9088ae6 100644 --- a/assets/css/components.scss +++ b/assets/css/components.scss @@ -4,12 +4,12 @@ @apply shadow-sm focus:shadow-lg; @apply transition-all duration-300 ease-in-out; } - + .input-primary { @apply border-primary-500 hover:border-primary-600 active:border-primary-600; @apply text-black; } - + .checkbox { -ms-transform: scale(1.5); -moz-transform: scale(1.5); @@ -18,17 +18,17 @@ transform: scale(1.5); padding: 10px; } - + .title { @apply leading-5 tracking-wide; } - + .btn { @apply focus:outline-none px-4 py-2 rounded-lg; @apply shadow-sm focus:shadow-lg; @apply transition-all duration-300 ease-in-out; } - + .btn-primary { @apply bg-primary-500 focus:bg-primary-600 active:bg-primary-600; @apply border-primary-500 focus:border-primary-600 active:border-primary-600; @@ -36,11 +36,11 @@ } .btn-alert { - @apply bg-red-500 focus:bg-red-600 active:bg-red-600; - @apply border-red-500 focus:border-red-600 active:border-red-600; + @apply bg-red-600 focus:bg-red-700 active:bg-red-800; + @apply border-red-600 focus:border-red-700 active:border-red-800; @apply text-white; } - + .hr { @apply border border-primary-500 w-full max-w-2xl; } @@ -49,4 +49,4 @@ @apply hover:underline; @apply transition-colors duration-500 ease-in-out; } -} \ No newline at end of file +}