diff --git a/src/status_im/ui/screens/chat/stickers/styles.cljs b/src/status_im/ui/screens/chat/stickers/styles.cljs index b0e1bc0c04..bd726f455e 100644 --- a/src/status_im/ui/screens/chat/stickers/styles.cljs +++ b/src/status_im/ui/screens/chat/stickers/styles.cljs @@ -1,7 +1,7 @@ (ns status-im.ui.screens.chat.stickers.styles (:require [status-im.utils.platform :as platform])) -(def stickers-panel {:flex 1 :margin 5 :flex-direction :row :justify-content :flex-start :flex-wrap :wrap}) +(def stickers-panel {:flex 1 :margin 5 :flex-direction :row :justify-content :space-between :flex-wrap :wrap}) (defn pack-icon [background-color icon-size icon-horizontal-margin] {:background-color background-color diff --git a/src/status_im/ui/screens/chat/stickers/views.cljs b/src/status_im/ui/screens/chat/stickers/views.cljs index 2cba0ba85b..ff10cdc153 100644 --- a/src/status_im/ui/screens/chat/stickers/views.cljs +++ b/src/status_im/ui/screens/chat/stickers/views.cljs @@ -49,10 +49,9 @@ ^{:key (str hash)} [react/touchable-highlight {:style {:height 75 :width 75 :margin 5} :on-press #(re-frame/dispatch [:chat/send-sticker sticker])} - [react/view - [react/image {:style {:resize-mode :cover :width "100%" :height "100%"} - :accessibility-label :sticker-icon - :source {:uri (contenthash/url (str "0x" hash))}}]]])]]]) + [react/image {:style {:resize-mode :cover :width "100%" :height "100%"} + :accessibility-label :sticker-icon + :source {:uri (contenthash/url (str "0x" hash))}}]])]]]) (defview recent-stickers-panel [window-width] (letsubs [stickers [:stickers/recent]]