Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(mobile): make header title bolder #368

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading