LogBox - Remove extra padding to bottom of scroll container

Summary:
Fixes the comical level of padding at the end of the scroll container.

Changelog: [Internal]

Reviewed By: cpojer

Differential Revision: D18351352

fbshipit-source-id: 5482fb81d0e385f0ce36530491b407c03ad87f3e
This commit is contained in:
Rick Hanlon
2019-11-06 13:56:10 -08:00
committed by Facebook Github Bot
parent b7c2d4389a
commit e223454fbf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ const metaStyles = StyleSheet.create({
body: {
paddingLeft: 25,
paddingRight: 25,
paddingBottom: 100,
paddingBottom: 20,
flexDirection: 'row',
justifyContent: 'space-between',
},
@@ -38,7 +38,7 @@ exports[`LogBoxInspectorMeta should render meta information 1`] = `
Object {
"flexDirection": "row",
"justifyContent": "space-between",
"paddingBottom": 100,
"paddingBottom": 20,
"paddingLeft": 25,
"paddingRight": 25,
}