diff options
-rw-r--r-- | .github/pull_request_template.md | 17 | ||||
-rw-r--r-- | src/components/notifications/NotificationPill.tsx | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 6d068539..13b198af 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -13,6 +13,23 @@ <!--- see how your change affects other areas of the code, etc. --> - [ ] Requires testing on different screen sizes (iPhone 8, iPhone 11) (optional) - [ ] Requires testing on different screen sizes (iPhone 12 mini, iPhone 12 Pro Max) (optional) +- [ ] There is an associated PR [here](URL_HERE) + +<!-- Please include steps and expected behavior for "Happy Path" and "Error Handling" when necessary --> +<!-- E.g. "Tap on Category to select a category (selected category should be displayed)" --> +* Happy Path + * Path 1 description + 1. action... (observation...) + 2. action... (observation...) + * Path 2 description + 1. action... (observation...) + 2. action... (observation...) +* Error Handling + * ... +* Existing functionality still works + * ... +* Performance + * ... ## Screenshots (if appropriate) diff --git a/src/components/notifications/NotificationPill.tsx b/src/components/notifications/NotificationPill.tsx index 525cd7fa..3b42aadf 100644 --- a/src/components/notifications/NotificationPill.tsx +++ b/src/components/notifications/NotificationPill.tsx @@ -58,7 +58,7 @@ export const NotificationPill: React.FC<NotificationPillProps> = ({ __px: number, __py: number, ) => { - const x = SCREEN_WIDTH / 2 - width / 2; + const x = SCREEN_WIDTH * 0.7 - width / 2; const y = isIPhoneX() ? CHIN_HEIGHT + NAV_BAR_HEIGHT + navBarPos : NAV_BAR_HEIGHT + navBarPos; |