[UI] Add padding to Vendetta's pages
This commit is contained in:
parent
2e6f9e238a
commit
ea7d4f06bf
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ export default function Developer() {
|
||||||
useProxy(settings);
|
useProxy(settings);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<RN.ScrollView style={{ flex: 1 }}>
|
<RN.ScrollView style={{ flex: 1 }} contentContainerStyle={{ paddingBottom: 38 }}>
|
||||||
<FormSection title="Debug" titleStyleType="no_border">
|
<FormSection title="Debug" titleStyleType="no_border">
|
||||||
<FormInput
|
<FormInput
|
||||||
value={settings.debuggerUrl}
|
value={settings.debuggerUrl}
|
||||||
|
|
|
@ -75,7 +75,7 @@ export default function General() {
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<RN.ScrollView style={{ flex: 1 }}>
|
<RN.ScrollView style={{ flex: 1 }} contentContainerStyle={{ paddingBottom: 38 }}>
|
||||||
<FormSection title="Links" titleStyleType="no_border">
|
<FormSection title="Links" titleStyleType="no_border">
|
||||||
<FormRow
|
<FormRow
|
||||||
label="Discord Server"
|
label="Discord Server"
|
||||||
|
|
Loading…
Reference in a new issue