Skip to content

Commit

Permalink
feat(mobile): make header title bolder
Browse files Browse the repository at this point in the history
  • Loading branch information
bkdev98 committed Sep 22, 2024
1 parent a88e19c commit 8ffe3c9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/mobile/app/(app)/(tabs)/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function TabLayout() {
borderRadius: 16,
},
headerTitleStyle: {
fontFamily: 'Haskoy-Medium',
fontFamily: 'Haskoy-SemiBold',
fontSize: 16,
color: getColor('--foreground'),
},
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/app/(app)/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function AuthenticatedLayout() {
headerTintColor: getColor('--foreground'),
headerShadowVisible: false,
headerTitleStyle: {
fontFamily: 'Haskoy-Medium',
fontFamily: 'Haskoy-SemiBold',
fontSize: 16,
color: getColor('--foreground'),
},
Expand Down
6 changes: 3 additions & 3 deletions apps/mobile/app/(app)/appearance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function AppearanceScreen() {

return (
<ScrollView className="bg-background" contentContainerClassName="px-6 py-3">
<Text className="font-medium text-base text-foreground">
<Text className="font-semiBold text-base text-foreground">
{t(i18n)`App theme`}
</Text>
<Text className="mb-4 text-muted-foreground text-sm">
Expand Down Expand Up @@ -93,7 +93,7 @@ export default function AppearanceScreen() {
</Tabs>
{isDynamicColorPaletteEnabled && (
<>
<Text className="mt-8 font-medium text-base text-foreground">
<Text className="mt-8 font-semiBold text-base text-foreground">
{t(i18n)`Color palette`}
</Text>
<Text className="mb-4 text-muted-foreground text-sm">
Expand Down Expand Up @@ -128,7 +128,7 @@ export default function AppearanceScreen() {
</Text>
</View>
<View className="absolute right-1 bottom-1 left-1 w-full rounded-b-md bg-muted py-1">
<Text className="!text-sm text-center font-medium text-foreground uppercase">
<Text className="!text-xs text-center font-medium text-foreground uppercase">
{palette.label}
</Text>
</View>
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/app/(aux)/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function AuxiliaryLayout() {
headerTintColor: getColor('--foreground'),
headerShadowVisible: false,
headerTitleStyle: {
fontFamily: 'Haskoy-Medium',
fontFamily: 'Haskoy-SemiBold',
fontSize: 16,
color: getColor('--foreground'),
},
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/components/common/footer-gradient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function FooterGradient() {
colorScheme === 'dark' ? 'transparent' : '#ffffff00',
getColor('--background'),
]}
className="absolute right-0 bottom-0 left-0 h-36"
className="absolute right-0 bottom-0 left-0 h-40"
pointerEvents="none"
/>
)
Expand Down

0 comments on commit 8ffe3c9

Please sign in to comment.