react-native-in-app-debugger 2.0.25 → 2.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.jsx +3 -2
- package/package.json +1 -1
package/index.jsx
CHANGED
|
@@ -239,7 +239,8 @@ export default ({
|
|
|
239
239
|
<Pressable
|
|
240
240
|
onPress={() => setTab(item)}
|
|
241
241
|
style={{
|
|
242
|
-
paddingHorizontal:
|
|
242
|
+
paddingHorizontal: 16,
|
|
243
|
+
paddingVertical: 8,
|
|
243
244
|
borderBottomWidth: +isSelected,
|
|
244
245
|
borderColor: "white",
|
|
245
246
|
}}
|
|
@@ -264,7 +265,7 @@ export default ({
|
|
|
264
265
|
);
|
|
265
266
|
}}
|
|
266
267
|
/>
|
|
267
|
-
<X style={{ marginRight:
|
|
268
|
+
<X style={{ paddingTop:3, marginRight:10 }} onPress={() => setIsOpen(false)} />
|
|
268
269
|
</View>
|
|
269
270
|
{tab === "vars" && <Variables variables={variables} />}
|
|
270
271
|
{tab === "mock" && (
|
package/package.json
CHANGED