[FIX] Decrease space between sections on List (#4520)
* [FIX] Decrease space between sections on List * minor tweak listcontainer * update test * Small fixes for header/info * Update tests Co-authored-by: Diego Mello <diegolmello@gmail.com>
This commit is contained in:
parent
e146cbae9f
commit
05c1798a58
File diff suppressed because one or more lines are too long
|
@ -5,7 +5,7 @@ import scrollPersistTaps from '../../lib/methods/helpers/scrollPersistTaps';
|
|||
|
||||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
paddingVertical: 16
|
||||
paddingVertical: 8
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import { PADDING_HORIZONTAL } from './constants';
|
|||
|
||||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
paddingBottom: 12,
|
||||
paddingVertical: 8,
|
||||
paddingHorizontal: PADDING_HORIZONTAL
|
||||
},
|
||||
title: {
|
||||
|
|
|
@ -9,7 +9,7 @@ import I18n from '../../i18n';
|
|||
|
||||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
paddingTop: 8,
|
||||
paddingVertical: 4,
|
||||
paddingHorizontal: PADDING_HORIZONTAL
|
||||
},
|
||||
text: {
|
||||
|
|
|
@ -5,7 +5,7 @@ import { Header } from '.';
|
|||
|
||||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
marginVertical: 16
|
||||
marginBottom: 8
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue