small fixes to style

This commit is contained in:
jfrye122
2023-07-26 08:38:19 -04:00
parent bf65b374f8
commit 60e6fd14a3
3 changed files with 6 additions and 6 deletions

View File

@@ -160,12 +160,6 @@ const TimeTicketBrowserStackNavigator = connect(
name="TimeTicketBrowser"
options={{
title: i18n.t("timeticketbrowser.titles.timeticketbrowsertab"),
headerRight: () => (
<>
<AddTimeTicketButton />
<SignOutButton />
</>
),
}}
component={ScreenTimeTicketBrowser}
/>

View File

@@ -190,7 +190,9 @@ export function TimeTicketClockOff({
{error ? (
<ErrorDisplay errorMessage={error.message} />
) : null}
<View style={{ flexDirection: "row",justifyContent: "center", paddingTop:8 }}>
<Button
mode="outlined"
style={styles.buttonBasicOutlined}
onPress={handleSubmit}
@@ -202,6 +204,7 @@ export function TimeTicketClockOff({
</Text>
</Button>
</View>
</View>
)}
</Formik>
</Card.Content>

View File

@@ -245,6 +245,8 @@ export function TimeTicketCreate({
{error ? (
<ErrorDisplay errorMessage={error.message} />
) : null}
<View style={{ flexDirection: "row",justifyContent: "center", paddingTop:8 }}>
<Button
mode="outlined"
style={styles.buttonBasicOutlined}
@@ -257,6 +259,7 @@ export function TimeTicketCreate({
</Text>
</Button>
</View>
</View>
)}
</Formik>
</Card.Content>