From 895327c340b821a8685b72541b7c60ed7f6f343d Mon Sep 17 00:00:00 2001 From: Sergio Ribera <56278796+SergioRibera@users.noreply.github.com> Date: Wed, 9 Oct 2024 23:02:22 -0400 Subject: [PATCH] fix: some sponsors without background --- src/components/sponsors.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/sponsors.rs b/src/components/sponsors.rs index 9cd4523..0d9cce7 100644 --- a/src/components/sponsors.rs +++ b/src/components/sponsors.rs @@ -83,9 +83,10 @@ pub fn Sponsors() -> impl IntoView { description="Evento de tecnología, cinco días con más de 150 charlas y talleres de tecnología, divulgación científica y una gran variedad de temas." /> @@ -109,6 +110,7 @@ pub fn SponsorCard( let colors = HashMap::from([ ("white", "bg-white dark:bg-white text-black dark:text-black"), ("black", "bg-black text-white dark:text-black"), + ("none", "text-white dark:text-black"), ]); let current_color = (*colors.get(&image_bg_color).unwrap()).to_string();