diff --git a/react/features/notifications/components/native/Notification.tsx b/react/features/notifications/components/native/Notification.tsx index e701c9802a..fe27cfdc89 100644 --- a/react/features/notifications/components/native/Notification.tsx +++ b/react/features/notifications/components/native/Notification.tsx @@ -154,7 +154,7 @@ const Notification = ({ <> + style = { styles.contentTextTitleDescription as TextStyle }> { titleText } { diff --git a/react/features/notifications/components/native/styles.ts b/react/features/notifications/components/native/styles.ts index e4a8ae5e44..1f4c2c1e60 100644 --- a/react/features/notifications/components/native/styles.ts +++ b/react/features/notifications/components/native/styles.ts @@ -45,15 +45,22 @@ export default { contentText: { color: BaseTheme.palette.text04, - paddingLeft: BaseTheme.spacing[5], + paddingLeft: BaseTheme.spacing[4], paddingTop: BaseTheme.spacing[1] }, + contentTextTitleDescription: { + color: BaseTheme.palette.text04, + fontWeight: 'bold', + paddingLeft: BaseTheme.spacing[4], + paddingTop: BaseTheme.spacing[2] + }, + contentTextTitle: { color: BaseTheme.palette.text04, fontWeight: 'bold', - paddingLeft: BaseTheme.spacing[5], - paddingTop: BaseTheme.spacing[2] + paddingLeft: BaseTheme.spacing[4], + paddingTop: BaseTheme.spacing[3] }, /** @@ -99,7 +106,7 @@ export default { btnContainer: { display: 'flex', flexDirection: 'row', - paddingLeft: BaseTheme.spacing[4], + paddingLeft: BaseTheme.spacing[3], paddingTop: BaseTheme.spacing[1] },