We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 150a86b commit 4cb090dCopy full SHA for 4cb090d
1 file changed
app/MnmRouteMapper.js
@@ -25,7 +25,7 @@ export const MenuButton = ({openMenu}) => {
25
export const BrowserButton = ({url}) => {
26
let icon
27
if (Platform.OS === 'ios') {
28
- icon = <FontAwesome name="safari" size={24} color={navBarColor} />
+ icon = <FontAwesome name="safari" size={22} color={navBarColor} style={styles.iosBrowserButton} />
29
} else {
30
icon = <FontAwesome name="chrome" size={24} color={navBarColor} />
31
}
@@ -87,6 +87,9 @@ export default function mnmRouteMapper(openMenu) {
87
const navBarColor = '#d35400'
88
89
const styles = StyleSheet.create({
90
+ iosBrowserButton: {
91
+ paddingBottom: 1,
92
+ },
93
browserButtonContainer: {
94
width: 50,
95
height: 50,
0 commit comments