Skip to content

Commit 680bc33

Browse files
authored
[#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
1 parent c7aa10c commit 680bc33

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/quo/components/wallet/account_card/properties.cljs

+2-8
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,11 @@
33

44
(defn gradient-start-color
55
[theme customization-color]
6-
(colors/theme-colors
7-
(colors/resolve-color customization-color theme 0)
8-
colors/neutral-95
9-
theme))
6+
(colors/resolve-color customization-color theme 0))
107

118
(defn gradient-end-color
129
[theme customization-color]
13-
(colors/theme-colors
14-
(colors/resolve-color customization-color theme 6)
15-
colors/neutral-95
16-
theme))
10+
(colors/resolve-color customization-color theme 6))
1711

1812
(defn alert-icon-color
1913
[theme]

0 commit comments

Comments
 (0)