Skip to content

Commit f83250d

Browse files
[#18929] fix: no bottom space under the join button
1 parent abd2b43 commit f83250d

File tree

1 file changed

+4
-2
lines changed
  • src/status_im/contexts/communities/actions/accounts_selection

1 file changed

+4
-2
lines changed

Diff for: src/status_im/contexts/communities/actions/accounts_selection/style.cljs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
(ns status-im.contexts.communities.actions.accounts-selection.style
22
(:require
3-
[quo.foundations.colors :as colors]))
3+
[quo.foundations.colors :as colors]
4+
[react-native.safe-area :as safe-area]))
45

56
(def screen-horizontal-padding 20)
67

@@ -16,4 +17,5 @@
1617
[]
1718
{:padding-top 12
1819
:padding-horizontal screen-horizontal-padding
19-
:background-color (colors/theme-colors colors/white colors/neutral-95)})
20+
:background-color (colors/theme-colors colors/white colors/neutral-95)
21+
:padding-bottom (+ (safe-area/get-bottom) 12)})

0 commit comments

Comments
 (0)