File tree 2 files changed +8
-11
lines changed
src/status_im2/contexts/share
2 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 32
32
:padding-bottom 8
33
33
:padding-horizontal 12
34
34
:border-radius 16
35
- :margin-top 12
36
- :margin-bottom 4
35
+ :margin-top 8
37
36
:margin-horizontal screen-padding
38
37
:background-color colors/white-opa-5
39
38
:flex-direction :column
66
65
(def profile-address-container
67
66
{:flex-direction :row
68
67
:justify-content :flex-start
69
- :margin-top 4
70
- :margin-horizontal 4 })
68
+ :margin-top 4 })
71
69
72
70
(def emoji-address-container
73
71
{:flex-direction :row
74
- :justify-content :flex-start
75
- :margin-horizontal 4 })
72
+ :justify-content :flex-start })
76
73
77
74
(def emoji-hash-label
78
75
{:color colors/white-opa-40
88
85
89
86
(def emoji-share-button-container
90
87
{:position :absolute
91
- :right 4
88
+ :right 0
92
89
:top 16 })
93
90
94
91
(def emoji-hash-content
97
94
:padding-top 4
98
95
:padding-bottom 12
99
96
:padding-left 12
100
- :font-size 14 })
97
+ :font-size 13 })
101
98
102
99
(def tabs-container
103
100
{:padding-horizontal screen-padding
Original file line number Diff line number Diff line change 42
42
" The goal here is to generate a string that begins with
43
43
join.status.im/u/ joined with the 1st 5 characters
44
44
of the compressed public key followed by an ellipsis followed by
45
- the last 12 characters of the compressed public key"
45
+ the last 10 characters of the compressed public key"
46
46
[base-url public-pk]
47
47
(let [first-part-of-public-pk (subs public-pk 0 5 )
48
48
ellipsis " ..."
49
49
public-pk-size (count public-pk)
50
- last-part-of-public-pk (subs public-pk (- public-pk-size 12 ) (- public-pk-size 1 ))
50
+ last-part-of-public-pk (subs public-pk (- public-pk-size 10 ) (- public-pk-size 1 ))
51
51
abbreviated-url (str base-url first-part-of-public-pk ellipsis last-part-of-public-pk)]
52
52
abbreviated-url))
53
53
174
174
:padding-top (navigation/status-bar-height )}
175
175
[blur/view
176
176
{:style style/blur
177
- :background-color colors/neutral-80-opa-40
177
+ :background-color colors/neutral-80-opa-80-blur
178
178
:blur-amount 20 }]
179
179
[tab-content window-width]])))
You can’t perform that action at this time.
0 commit comments