Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Commit

Permalink
Fix track screen artist name font weight (#3695)
Browse files Browse the repository at this point in the history
  • Loading branch information
dharit-tan authored Jul 3, 2023
1 parent 7de914e commit 23e5b24
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions packages/mobile/src/components/details-tile/DetailsTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ import {
Hyperlink,
Tile,
DogEar,
DogEarType
DogEarType,
Text
} from 'app/components/core'
import Text from 'app/components/text'
import UserBadges from 'app/components/user-badges'
import { light } from 'app/haptics'
import { useIsGatedContentEnabled } from 'app/hooks/useIsGatedContentEnabled'
Expand Down Expand Up @@ -100,11 +100,6 @@ const useStyles = makeStyles(({ palette, spacing, typography }) => ({
alignSelf: 'center'
},

artist: {
color: palette.secondary,
fontSize: 18
},

badge: {
marginLeft: spacing(1)
},
Expand Down Expand Up @@ -348,7 +343,9 @@ export const DetailsTile = ({
{user ? (
<TouchableOpacity onPress={handlePressArtistName}>
<View style={styles.artistContainer}>
<Text style={styles.artist}>{user.name}</Text>
<Text fontSize='large' color='secondary'>
{user.name}
</Text>
<UserBadges
style={styles.badge}
badgeSize={16}
Expand Down

0 comments on commit 23e5b24

Please sign in to comment.