diff --git a/assets/styles/components/button.css b/assets/styles/components/button.css index 4a568e7..c1e366f 100644 --- a/assets/styles/components/button.css +++ b/assets/styles/components/button.css @@ -1,7 +1,7 @@ .button { @apply inline-flex items-center justify-center space-x-2 h-10 leading-10 px-4 md:px-8 cursor-pointer; @apply uppercase leading-none text-center; - @apply transition-colors outline-none focus:outline-2 focus:outline-offset-2 focus:outline-primary-light; + @apply transition-colors outline-none focus:outline-2 focus:outline-offset-2 focus:outline-primary-dark; @apply rounded-md; } @@ -20,42 +20,47 @@ } .button--secondary { - @apply bg-none bg-primary-dark text-white; - @apply hover:bg-primary-light/80; + @apply bg-none bg-primary-light text-white; + @apply hover:bg-primary-light/50; +} + +.button--neutral { + @apply bg-none bg-gray-200; + @apply hover:bg-gray-200/50; } .sbw { .button--primary { @apply bg-none bg-sbw-secondary text-white; - @apply hover:bg-none hover:bg-sbw-primary/80; + @apply hover:bg-none hover:bg-sbw-primary/50; } .button--secondary { @apply bg-none bg-sbw-primary-dark text-white; - @apply hover:bg-none hover:bg-sbw-primary/80; + @apply hover:bg-none hover:bg-sbw-primary/50; } } .snz { .button--primary { @apply bg-none bg-snz-secondary text-white; - @apply hover:bg-none hover:bg-snz-primary/80; + @apply hover:bg-none hover:bg-snz-primary/50; } .button--secondary { @apply bg-none bg-snz-primary-dark text-white; - @apply hover:bg-none hover:bg-snz-primary/80; + @apply hover:bg-none hover:bg-snz-primary/50; } } .ser { .button--primary { @apply bg-none bg-ser-secondary text-white; - @apply hover:bg-none hover:bg-ser-primary/80; + @apply hover:bg-none hover:bg-ser-primary/50; } .button--secondary { @apply bg-none bg-ser-primary text-white; - @apply hover:bg-none hover:bg-ser-primary/80; + @apply hover:bg-none hover:bg-ser-primary/50; } } diff --git a/templates/booking/create/step_2.html.twig b/templates/booking/create/step_2.html.twig index 3974d15..a67310b 100644 --- a/templates/booking/create/step_2.html.twig +++ b/templates/booking/create/step_2.html.twig @@ -62,15 +62,23 @@