From 680bc3397164b93cdb2a7d38e38ec16340d6299b Mon Sep 17 00:00:00 2001 From: Ulises Manuel <90291778+ulisesmac@users.noreply.github.com> Date: Tue, 20 Feb 2024 17:29:34 -0600 Subject: [PATCH] [#18545] Add missing linear gradient to dark themed cards (#18689) * Add missing linear gradient to cards dark themed cards - Fix the `:ellipsis-mode` property - Simplify code --- src/quo/components/wallet/account_card/properties.cljs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/quo/components/wallet/account_card/properties.cljs b/src/quo/components/wallet/account_card/properties.cljs index 31f5d7f522..d51711e5b5 100644 --- a/src/quo/components/wallet/account_card/properties.cljs +++ b/src/quo/components/wallet/account_card/properties.cljs @@ -3,17 +3,11 @@ (defn gradient-start-color [theme customization-color] - (colors/theme-colors - (colors/resolve-color customization-color theme 0) - colors/neutral-95 - theme)) + (colors/resolve-color customization-color theme 0)) (defn gradient-end-color [theme customization-color] - (colors/theme-colors - (colors/resolve-color customization-color theme 6) - colors/neutral-95 - theme)) + (colors/resolve-color customization-color theme 6)) (defn alert-icon-color [theme]