From db7e8a3ec80478bad5eedc1084272a7fccb2accf Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Fri, 28 Sep 2018 12:28:05 -0400 Subject: Update readme.md --- readme.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/readme.md b/readme.md index febf9fb..5fe676a 100644 --- a/readme.md +++ b/readme.md @@ -1,12 +1,3 @@ # Advanced React + GraphQL Coming Soon! - - - -## Early Access Bugs Already Fixed - -* [x] Removed unused Prisma directory in starter files and finished app -* [X] Upgrade Next.js -* [x] Video 7 reset at 0:45 -* [x] Added note in video 1 to turn on custom title bar setting to get the colours to work -- cgit v1.3 From 2cf7d9968d9bb0378412e9ca7caadd1b328f69da Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Fri, 28 Sep 2018 16:46:17 -0400 Subject: add radnika to buttons --- finished-application/frontend/components/Page.js | 1 + 1 file changed, 1 insertion(+) diff --git a/finished-application/frontend/components/Page.js b/finished-application/frontend/components/Page.js index 99f3158..47ef489 100644 --- a/finished-application/frontend/components/Page.js +++ b/finished-application/frontend/components/Page.js @@ -49,6 +49,7 @@ injectGlobal` text-decoration: none; color: ${theme.black}; } + button { font-family: 'radnika_next'; } `; class Page extends Component { -- cgit v1.3 From 12c6e01e6fffd6a26dc01a87f9475f3a2207948c Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Wed, 3 Oct 2018 11:26:46 -0400 Subject: Update readme.md --- readme.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/readme.md b/readme.md index 5fe676a..5ec7d5d 100644 --- a/readme.md +++ b/readme.md @@ -1,3 +1,10 @@ # Advanced React + GraphQL Coming Soon! + + +## FAQ + +**Q:** Which Extensions for VS Code is Wes using? +**A:** All my extensions are listed on my dotfiles repo → https://github.com/wesbos/dotfiles but specifically this course uses [ESLint] +(https://github.com/Microsoft/vscode-eslint), [Prettier](https://github.com/prettier/prettier-vscode) -- cgit v1.3 From 052c60766f6cce6f278d34ea490888273254e9d3 Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Wed, 3 Oct 2018 11:26:58 -0400 Subject: Update readme.md --- readme.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 5ec7d5d..08cafc9 100644 --- a/readme.md +++ b/readme.md @@ -6,5 +6,4 @@ Coming Soon! ## FAQ **Q:** Which Extensions for VS Code is Wes using? -**A:** All my extensions are listed on my dotfiles repo → https://github.com/wesbos/dotfiles but specifically this course uses [ESLint] -(https://github.com/Microsoft/vscode-eslint), [Prettier](https://github.com/prettier/prettier-vscode) +**A:** All my extensions are listed on my dotfiles repo → https://github.com/wesbos/dotfiles but specifically this course uses [ESLint](https://github.com/Microsoft/vscode-eslint), [Prettier](https://github.com/prettier/prettier-vscode) -- cgit v1.3 From 2189dbda3cafaa291936632381923899d86d2e7c Mon Sep 17 00:00:00 2001 From: Matt Wood Date: Tue, 9 Oct 2018 12:06:03 -0500 Subject: Fix minor typos in package.json and CartCount component --- finished-application/frontend/components/CartCount.js | 2 +- finished-application/frontend/package.json | 2 +- sick-fits/frontend/package.json | 2 +- stepped-solutions/45/frontend/components/CartCount.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/finished-application/frontend/components/CartCount.js b/finished-application/frontend/components/CartCount.js index c202d74..8f705ec 100644 --- a/finished-application/frontend/components/CartCount.js +++ b/finished-application/frontend/components/CartCount.js @@ -11,7 +11,7 @@ const AnimationStyles = styled.span` transition: all 0.4s; backface-visibility: hidden; } - /* Intial State of the entered Dot */ + /* Initial State of the entered Dot */ .count-enter { transform: scale(4) rotateX(0.5turn); } diff --git a/finished-application/frontend/package.json b/finished-application/frontend/package.json index 43af0cf..2200d6f 100644 --- a/finished-application/frontend/package.json +++ b/finished-application/frontend/package.json @@ -57,7 +57,7 @@ ".*": "babel-jest" } }, - "//": "This is out babel config, I prefer this over a .babelrc file", + "//": "This is our babel config, I prefer this over a .babelrc file", "babel": { "env": { "development": { diff --git a/sick-fits/frontend/package.json b/sick-fits/frontend/package.json index 43af0cf..2200d6f 100644 --- a/sick-fits/frontend/package.json +++ b/sick-fits/frontend/package.json @@ -57,7 +57,7 @@ ".*": "babel-jest" } }, - "//": "This is out babel config, I prefer this over a .babelrc file", + "//": "This is our babel config, I prefer this over a .babelrc file", "babel": { "env": { "development": { diff --git a/stepped-solutions/45/frontend/components/CartCount.js b/stepped-solutions/45/frontend/components/CartCount.js index c202d74..8f705ec 100755 --- a/stepped-solutions/45/frontend/components/CartCount.js +++ b/stepped-solutions/45/frontend/components/CartCount.js @@ -11,7 +11,7 @@ const AnimationStyles = styled.span` transition: all 0.4s; backface-visibility: hidden; } - /* Intial State of the entered Dot */ + /* Initial State of the entered Dot */ .count-enter { transform: scale(4) rotateX(0.5turn); } -- cgit v1.3