We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd0b27 commit 140ac0bCopy full SHA for 140ac0b
src/status_im/contexts/communities/actions/accounts_selection/style.cljs
@@ -1,6 +1,7 @@
1
(ns status-im.contexts.communities.actions.accounts-selection.style
2
(:require
3
- [quo.foundations.colors :as colors]))
+ [quo.foundations.colors :as colors]
4
+ [react-native.safe-area :as safe-area]))
5
6
(def screen-horizontal-padding 20)
7
@@ -16,4 +17,5 @@
16
17
[]
18
{:padding-top 12
19
:padding-horizontal screen-horizontal-padding
- :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