File tree 2 files changed +8
-3
lines changed
src/quo/components/wallet/keypair
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
(ns quo.components.wallet.keypair.style
2
2
(:require
3
- [quo.foundations.colors :as colors]))
3
+ [quo.foundations.colors :as colors]
4
+ [react-native.platform :as platform]))
4
5
5
6
(defn container
6
7
[{:keys [blur? customization-color theme selected?]}]
34
35
{:color (if blur?
35
36
colors/white-opa-40
36
37
(colors/theme-colors colors/neutral-50 colors/neutral-40 theme))})
38
+
39
+ (defn dot
40
+ [blur? theme]
41
+ (merge (subtitle blur? theme)
42
+ {:bottom (if platform/ios? 2 -2 )}))
Original file line number Diff line number Diff line change 11
11
[quo.foundations.colors :as colors]
12
12
[quo.theme :as quo.theme]
13
13
[react-native.core :as rn]
14
- [react-native.platform :as platform]
15
14
[reagent.core :as reagent]
16
15
[utils.i18n :as i18n]))
17
16
73
72
(when (= type :default-keypair )
74
73
[text/text
75
74
{:size :paragraph-2
76
- :style (merge ( style/subtitle blur? theme) { :bottom ( if platform/ios? 2 -2 )} )}
75
+ :style (style/dot blur? theme)}
77
76
" ∙ " ])
78
77
[text/text
79
78
{:size :paragraph-2
You can’t perform that action at this time.
0 commit comments