Skip to content

Commit 3fc12cf

Browse files
committed
test
1 parent 7cc9773 commit 3fc12cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/quo2/components/list_items/token_value/style.cljs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
(:require [quo2.foundations.colors :as colors]))
33

44
(defn container
5-
[color bg-opacity]
5+
[color bg-opacity theme]
66
{:width 359
77
:height 56
88
:padding-horizontal 12
99
:padding-vertical 8
1010
:border-radius 12
1111
:flex-direction :row
1212
:justify-content :space-between
13-
:backgroundColor (colors/custom-color-by-theme color 50 50 bg-opacity bg-opacity)})
13+
:background-color (colors/custom-color-by-theme color 50 50 bg-opacity bg-opacity theme)})
1414

1515
(defn metric-text
1616
[status theme]

src/quo2/components/list_items/token_value/view.cljs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
0)
1919
{:keys [crypto-value fiat-value percentage-change fiat-change]} values]
2020
[rn/view
21-
{:style (style/container customization-color bg-opacity)
21+
{:style (style/container customization-color bg-opacity theme)
2222
:accessibility-label :container}
2323
[rn/view
2424
{:style {:flex-direction :row

0 commit comments

Comments
 (0)