Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
siddarthkay committed Jun 19, 2023
1 parent 5d5d58e commit be50fac
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
12 changes: 5 additions & 7 deletions src/status_im2/contexts/share/style.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@
(def screen-padding 20)

(def blur
{:style {:position :absolute
:top 0
:left 0
:right 0
:bottom 0}
:background-color colors/neutral-80-opa-40
:blur-amount 20})
{:position :absolute
:top 0
:left 0
:right 0
:bottom 0})

(def header-row
{:flex-direction :row
Expand Down
11 changes: 6 additions & 5 deletions src/status_im2/contexts/share/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,12 @@
:accessibility-label :shell-scan-button
:override-theme :dark
:on-press #(rf/dispatch [:navigate-back])}
:i/scan]
]
:i/scan]]
[quo/text
{:size :heading-1
:weight :semi-bold
:style style/header-heading}
(i18n/label :t/share)]
])
(i18n/label :t/share)]])

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

0 comments on commit be50fac

Please sign in to comment.