|
5 | 5 | (def screen-padding 20)
|
6 | 6 |
|
7 | 7 | (def blur
|
8 |
| - {:style {:position :absolute |
9 |
| - :top 0 |
10 |
| - :left 0 |
11 |
| - :right 0 |
12 |
| - :bottom 0} |
13 |
| - :overlay-color colors/neutral-80-opa-80 |
14 |
| - :blur-amount 20}) |
| 8 | + {:position :absolute |
| 9 | + :top 0 |
| 10 | + :left 0 |
| 11 | + :right 0 |
| 12 | + :bottom 0 |
| 13 | + :overlay-color colors/neutral-80-opa-80-blur}) |
| 14 | + |
| 15 | +(def header-row |
| 16 | + {:flex-direction :row |
| 17 | + :justify-content :space-between |
| 18 | + :padding-horizontal screen-padding |
| 19 | + :margin-vertical 12}) |
15 | 20 |
|
16 | 21 | (def header-button
|
17 |
| - {:margin-bottom 12 |
18 |
| - :margin-left screen-padding}) |
| 22 | + {:margin-bottom 12 |
| 23 | + :background-color colors/white-opa-5}) |
19 | 24 |
|
20 | 25 | (def header-heading
|
21 | 26 | {:padding-horizontal screen-padding
|
22 | 27 | :padding-vertical 12
|
23 | 28 | :color colors/white})
|
24 | 29 |
|
25 | 30 | (def qr-code-container
|
26 |
| - {:padding 12 |
27 |
| - :border-radius 16 |
28 |
| - :margin-top 12 |
29 |
| - :margin-bottom 4 |
30 |
| - :margin-horizontal screen-padding |
31 |
| - :background-color colors/white-opa-5 |
32 |
| - :flex-direction :column |
33 |
| - :justify-content :center}) |
| 31 | + {:padding-top 12 |
| 32 | + :padding-bottom 8 |
| 33 | + :padding-horizontal 12 |
| 34 | + :border-radius 16 |
| 35 | + :margin-top 8 |
| 36 | + :margin-horizontal screen-padding |
| 37 | + :background-color colors/white-opa-5 |
| 38 | + :flex-direction :column |
| 39 | + :justify-content :center}) |
34 | 40 |
|
35 | 41 | (def emoji-hash-container
|
36 | 42 | {:border-radius 16
|
|
57 | 63 | :padding-top 2})
|
58 | 64 |
|
59 | 65 | (def profile-address-container
|
60 |
| - {:flex-direction :row |
61 |
| - :justify-content :flex-start |
62 |
| - :margin-top 6 |
63 |
| - :margin-horizontal 4}) |
| 66 | + {:flex-direction :row |
| 67 | + :justify-content :flex-start |
| 68 | + :margin-top 4}) |
64 | 69 |
|
65 | 70 | (def emoji-address-container
|
66 |
| - {:flex-direction :row |
67 |
| - :justify-content :flex-start |
68 |
| - :margin-top 6 |
69 |
| - :margin-horizontal 4}) |
| 71 | + {:flex-direction :row |
| 72 | + :justify-content :flex-start}) |
70 | 73 |
|
71 | 74 | (def emoji-hash-label
|
72 | 75 | {:color colors/white-opa-40
|
|
78 | 81 | (def share-button-container
|
79 | 82 | {:position :absolute
|
80 | 83 | :right 0
|
81 |
| - :top 16}) |
| 84 | + :top 12}) |
82 | 85 |
|
83 | 86 | (def emoji-share-button-container
|
84 | 87 | {:position :absolute
|
85 |
| - :right 4 |
86 |
| - :top 16}) |
| 88 | + :right 0 |
| 89 | + :top 12}) |
87 | 90 |
|
88 | 91 | (def emoji-hash-content
|
89 | 92 | {:color colors/white
|
90 | 93 | :align-self :flex-start
|
91 | 94 | :padding-top 4
|
92 | 95 | :padding-bottom 12
|
93 | 96 | :padding-left 12
|
94 |
| - :font-size 14}) |
| 97 | + :font-size 13}) |
95 | 98 |
|
96 | 99 | (def tabs-container
|
97 | 100 | {:padding-horizontal screen-padding
|
|
0 commit comments