diff --git a/src/components/points/view/pointsStyles.js b/src/components/points/view/pointsStyles.js index e9e476cb6..5993d7767 100644 --- a/src/components/points/view/pointsStyles.js +++ b/src/components/points/view/pointsStyles.js @@ -3,7 +3,7 @@ import EStyleSheet from 'react-native-extended-stylesheet'; export default EStyleSheet.create({ pointText: { color: '$primaryBlue', - fontSize: 24, + fontSize: 26, marginTop: 24, justifyContent: 'center', alignSelf: 'center', @@ -31,6 +31,10 @@ export default EStyleSheet.create({ justifyContent: 'center', alignItems: 'center', }, + iconButton: { + marginTop: 3, + marginLeft: 1, + }, activeIconWrapper: { backgroundColor: '$primaryBlue', }, @@ -43,7 +47,7 @@ export default EStyleSheet.create({ }, badge: { position: 'absolute', - right: -7, + right: -9, top: 20, backgroundColor: '$primaryBlue', justifyContent: 'center', diff --git a/src/components/points/view/pointsView.js b/src/components/points/view/pointsView.js index 4a121e382..f96d8a9f8 100644 --- a/src/components/points/view/pointsView.js +++ b/src/components/points/view/pointsView.js @@ -84,7 +84,9 @@ class PointsView extends Component { - ( - {intl.formatMessage({ id: 'points.no_activity' })} + : ( + ( + + )} /> - )} - /> + ) + } diff --git a/src/config/locales/en-US.json b/src/config/locales/en-US.json index 376436e18..d48a2ad6d 100644 --- a/src/config/locales/en-US.json +++ b/src/config/locales/en-US.json @@ -41,7 +41,8 @@ "reblog_title": "Points for reblog", "login_title": "Points for login", "checkin_title": "Points for usage", - "checkin_extra_title": "Usage bonus" + "checkin_extra_title": "Usage bonus", + "no_activity": "No activity here!" }, "messages": { "comingsoon": "Messages feature is coming soon!" diff --git a/src/screens/notification/screen/notificationScreen.js b/src/screens/notification/screen/notificationScreen.js index 9724cc2e3..56a8fe9af 100644 --- a/src/screens/notification/screen/notificationScreen.js +++ b/src/screens/notification/screen/notificationScreen.js @@ -76,7 +76,17 @@ class NotificationScreen extends PureComponent { })} style={styles.tabbarItem} > - + {isLoggedIn ? ( + + ) : ( + + )}