diff --git a/assets/css/app.css b/assets/css/app.css index f5e2aa5..c9d6589 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -12,6 +12,15 @@ @apply rounded-full !font-display text-small-body; } +@utility btn-gradient { + background: linear-gradient(to bottom right, var(--color-cyan-500, #06b6d4), var(--color-primary-500, #8611ed)); + border: none; + color: white; + &:hover { + background: linear-gradient(to bottom right, var(--color-cyan-600, #0891b2), var(--color-primary-600, #6b0dbe)); + } +} + @utility input { @apply rounded-full focus:outline-none focus-within:outline-none focus:border-2 focus-within:border-2 !font-display text-small-body transition-all; } diff --git a/lib/claper_web/live/event_live/event_card_component.ex b/lib/claper_web/live/event_live/event_card_component.ex index f327945..868196b 100644 --- a/lib/claper_web/live/event_live/event_card_component.ex +++ b/lib/claper_web/live/event_live/event_card_component.ex @@ -26,7 +26,7 @@ defmodule ClaperWeb.EventLive.EventCardComponent do ~H"""
@@ -138,7 +138,7 @@ defmodule ClaperWeb.EventLive.EventCardComponent do @@ -207,7 +207,7 @@