From 792e599dd4d850b9ba8dc52064d510565225917c Mon Sep 17 00:00:00 2001 From: Foo Pang Date: Fri, 22 Dec 2017 21:47:15 +0800 Subject: [PATCH] [Fix #2775] Discover: Popular hashtags counter is misplaced --- src/status_im/ui/screens/discover/styles.cljs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/status_im/ui/screens/discover/styles.cljs b/src/status_im/ui/screens/discover/styles.cljs index 63ad95c13f..217cab6e51 100644 --- a/src/status_im/ui/screens/discover/styles.cljs +++ b/src/status_im/ui/screens/discover/styles.cljs @@ -11,8 +11,11 @@ :border-bottom-color styles/color-light-gray4}) (def row - {:flex-direction :row - :margin-bottom 10}) + {:flex 1 + :flex-direction :row + :align-items :center + :justify-content :space-between + :margin-bottom 10}) (def column {:flex-direction :column})