SHARE
diff --git a/FrontendMentor/article-preview-component/js/challenge.js b/FrontendMentor/article-preview-component/js/challenge.js
index 6c2d4fa..573cb53 100644
--- a/FrontendMentor/article-preview-component/js/challenge.js
+++ b/FrontendMentor/article-preview-component/js/challenge.js
@@ -8,7 +8,7 @@ function toggleTooltip() {
const articleShareTooltip = document.querySelector(".articleShareButtonTooltip");
const articleShareSection = document.querySelector(".articleShareSection");
- if (window.innerWidth <= 500) {
+ if (window.innerWidth <= 650) {
if (isTooltipVisible) {
articleFooter.classList.remove("backgroundDark");
articleShareButton.classList.remove("buttonDark");
diff --git a/FrontendMentor/article-preview-component/notes/desktop-diff-final.png b/FrontendMentor/article-preview-component/notes/desktop-diff-final.png
new file mode 100644
index 0000000..d4a5690
Binary files /dev/null and b/FrontendMentor/article-preview-component/notes/desktop-diff-final.png differ
diff --git a/FrontendMentor/article-preview-component/notes/desktop-final.jpg b/FrontendMentor/article-preview-component/notes/desktop-final.jpg
new file mode 100644
index 0000000..4900f56
Binary files /dev/null and b/FrontendMentor/article-preview-component/notes/desktop-final.jpg differ
diff --git a/FrontendMentor/article-preview-component/notes/mobile-diff-final.png b/FrontendMentor/article-preview-component/notes/mobile-diff-final.png
new file mode 100644
index 0000000..ca594c5
Binary files /dev/null and b/FrontendMentor/article-preview-component/notes/mobile-diff-final.png differ
diff --git a/FrontendMentor/article-preview-component/notes/mobile-final.jpg b/FrontendMentor/article-preview-component/notes/mobile-final.jpg
new file mode 100644
index 0000000..863433b
Binary files /dev/null and b/FrontendMentor/article-preview-component/notes/mobile-final.jpg differ
diff --git a/FrontendMentor/article-preview-component/notes/process.md b/FrontendMentor/article-preview-component/notes/process.md
index ecfbcf9..3209a00 100644
--- a/FrontendMentor/article-preview-component/notes/process.md
+++ b/FrontendMentor/article-preview-component/notes/process.md
@@ -45,4 +45,28 @@ Used this https://cssdeck.com/labs/bv45bh6p for the callout/tooltip
Don't understand why the img/svg inside the button shifts up when tooltip appears.
-~~~Broke the desktop version while adding the share stuff. Not entirely sure how.~~~
\ No newline at end of file
+~~Broke the desktop version while adding the share stuff. Not entirely sure how.~~
+
+---
+
+Notes before submission.
+
+Had to disable overflow in articlePreview on desktop to show full callout/tooltip. That meant I had to put code previewImage for border-radius.
+
+Don't get why the svg img is pushed upwards when pressing the share button.
+
+Had to change buttonDark to a lighter shade because I couldn't colour the svg. I've since searched on google and found this q/a with a bunch of options
+
+https://stackoverflow.com/questions/24933430/img-src-svg-changing-the-styles-with-css
+
+I have inlined the svg and used fill="currentColor" rather than edit the supplied svg.
+
+So this is where I leave it
+
+![Mobile Final](./mobile-final.jpg)
+![Desktop Final](./desktop-final.jpg)
+
+Differences from design
+
+![Mobile Final Difference](./mobile-diff-final.png)
+![Desktop Final Difference](./desktop-diff-final.png)