Skip to content

Commit 7617bbc

Browse files
committed
address feedback
1 parent cd77b16 commit 7617bbc

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

src/status_im2/contexts/share/style.cljs

+5-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55
(def screen-padding 20)
66

77
(def blur
8-
{:style {:position :absolute
9-
:top 0
10-
:left 0
11-
:right 0
12-
:bottom 0}
13-
:background-color colors/neutral-80-opa-40
14-
:blur-amount 20})
8+
{:position :absolute
9+
:top 0
10+
:left 0
11+
:right 0
12+
:bottom 0})
1513

1614
(def header-row
1715
{:flex-direction :row

src/status_im2/contexts/share/view.cljs

+6-5
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,12 @@
3131
:accessibility-label :shell-scan-button
3232
:override-theme :dark
3333
:on-press #(rf/dispatch [:navigate-back])}
34-
:i/scan]
35-
]
34+
:i/scan]]
3635
[quo/text
3736
{:size :heading-1
3837
:weight :semi-bold
3938
:style style/header-heading}
40-
(i18n/label :t/share)]
41-
])
39+
(i18n/label :t/share)]])
4240

4341
(defn abbreviated-url
4442
"The goal here is to generate a string that begins with
@@ -174,5 +172,8 @@
174172
[rn/view
175173
{:flex 1
176174
:padding-top (navigation/status-bar-height)}
177-
[blur/view style/blur]
175+
[blur/view
176+
{:style style/blur
177+
:background-color colors/neutral-80-opa-40
178+
:blur-amount 20}]
178179
[tab-content window-width]])))

0 commit comments

Comments
 (0)