new fonts, ui tweaks

This commit is contained in:
ivic00
2024-10-15 23:07:21 +02:00
parent 4b01e18ac0
commit 43d0d67044
34 changed files with 992 additions and 545 deletions

View File

@ -11,7 +11,7 @@ const HeaderTemplate = (props: {
}) => {
const { user, profileData } = useAuthContext();
const headerHeight:number = 80;
const headerHeight:number = 72;
return (
<View row centerV marginV-15>
<ImageBackground
@ -26,9 +26,9 @@ const HeaderTemplate = (props: {
/>
<View gap-3>
{props.isWelcome && (
<Text text70L style={{fontSize: 17, fontFamily: "Manrope_400Regular"}}>Welcome, {profileData?.firstName}!</Text>
<Text text70L style={{fontSize: 19, fontFamily: "Manrope_400Regular"}}>Welcome, {profileData?.firstName}!</Text>
)}
<Text text70B style={{ fontSize: 18, fontFamily: "Manrope_700Bold" }}>
<Text text70B style={{ fontSize: 18 , fontFamily: "Manrope_600SemiBold" }}>
{props.message}
</Text>
{props.children && <View>{props.children}</View>}