Skip to content

Commit

Permalink
Home: speed dials layout fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmod committed Nov 15, 2019
1 parent ea76bbc commit fc8828b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions ReactNative/js/screens/Home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,12 @@ const styles = StyleSheet.create({
marginLeft: 12,
marginRight: 12,
},
speedDialsContainer: {
marginBottom: 25,
},
speedDials: {
marginTop: 0,
marginBottom: 25,
marginBottom: 0,
padding: 0,
flexDirection: 'row',
flex: 1,
Expand Down Expand Up @@ -109,8 +112,10 @@ export default function Home({ speedDials, pinnedSites, newsModule }) {
source={normalizeUrl('logo.svg')}
/>
</View>
<SpeedDialRow dials={firstRow}/>
<SpeedDialRow dials={secondRow}/>
<View style={styles.speedDialsContainer}>
<SpeedDialRow dials={firstRow}/>
<SpeedDialRow dials={secondRow}/>
</View>
<News newsModule={newsModule} />
</View>
</ScrollView>
Expand Down

0 comments on commit fc8828b

Please sign in to comment.