Skip to content

Commit

Permalink
feat: font size updated
Browse files Browse the repository at this point in the history
  • Loading branch information
avrcoelho committed May 21, 2022
1 parent 444e16b commit 076c80f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-hook-notification",
"version": "2.2.0",
"version": "2.2.1",
"license": "MIT",
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions src/presentation/components/Notification/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,14 @@ export const styles = StyleSheet.create({
},

title: {
fontSize: 15,
lineHeight: 18,
fontSize: 16,
lineHeight: 20,
marginBottom: 8,
fontWeight: 'bold',
},

text: {
fontSize: 14,
fontSize: 16,
lineHeight: 20,
},

Expand Down
4 changes: 2 additions & 2 deletions storybook/stories/Notification/Notification.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const App = (): JSX.Element => {

const onDispatchNotification = (): void => {
notification.warning({
title: 'Hey there!',
text: "I'm using react-native-hook-notification ❤️",
title: "I'm using react-native-hook-notification ❤️",
text: "I'm using react-native-hook-notification ❤️ I'm using react-native-hook-notification ❤️",
});
};

Expand Down

0 comments on commit 076c80f

Please sign in to comment.