@@ -78,13 +78,13 @@ contain.
### Definition tooltip
-| Class | Property | px / rem | Spacing token |
-| ------------ | --------------------------- | -------- | ------------- |
-| Container | max-width | 176 / 11 | – |
-| | padding-top, padding bottom | 8 / 0.5 | `$spacing-03` |
-| | padding-left, padding-right | 16 / 1 | `$spacing-05` |
-| Underline | border-bottom | 1px | – |
-| Caret | margin-top | 4px | `$spacing-02` |
+| Class | Property | px / rem | Spacing token |
+| --------- | --------------------------- | -------- | ------------- |
+| Container | max-width | 176 / 11 | – |
+| | padding-top, padding bottom | 8 / 0.5 | `$spacing-03` |
+| | padding-left, padding-right | 16 / 1 | `$spacing-05` |
+| Underline | border-bottom | 1px | – |
+| Caret | margin-top | 4px | `$spacing-02` |
@@ -98,12 +98,12 @@ contain.
### Icon tooltip
-| Class | Property | px / rem | Spacing token |
-| ---------- | --------------------------- | --------- | ------------- |
-| Container | max-width | 176 / 11 | – |
-| | padding-left, padding-right | 16 / 1 | `$spacing-05` |
-| | padding-top, padding-bottom | 2 / 0.125 | `$spacing-01` |
-| Caret | margin-top | 8 / 0.5 | `$spacing-03` |
+| Class | Property | px / rem | Spacing token |
+| --------- | --------------------------- | --------- | ------------- |
+| Container | max-width | 176 / 11 | – |
+| | padding-left, padding-right | 16 / 1 | `$spacing-05` |
+| | padding-top, padding-bottom | 2 / 0.125 | `$spacing-01` |
+| Caret | margin-top | 8 / 0.5 | `$spacing-03` |
diff --git a/src/pages/contributing/overview.mdx b/src/pages/contributing/overview.mdx
index 955d5ff9b83..79852db8be7 100644
--- a/src/pages/contributing/overview.mdx
+++ b/src/pages/contributing/overview.mdx
@@ -64,7 +64,7 @@ Regardless of how you choose to contribute, we encourage you to open an issue as
early as possible in the process.
If working with GitHub sounds like a lot, check out
-[this free video series](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github).
+[this free video series](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github).
It's one of our favorite resources.
## The Carbon community
diff --git a/src/pages/designing/get-started.mdx b/src/pages/designing/get-started.mdx
index 6e6c7674815..d07173c1643 100644
--- a/src/pages/designing/get-started.mdx
+++ b/src/pages/designing/get-started.mdx
@@ -99,7 +99,6 @@ jump in to help you out.
- [#carbon-design-system](https://ibm-studios.slack.com/messages/C0M053VPT/)
- [#carbon-components](https://ibm-studios.slack.com/archives/C046Y0YUD)
-- [#carbon-elements](https://ibm-studios.slack.com/archives/CDHHNNZQR)
- [#carbon-tutorial](https://ibm-studios.slack.com/archives/CJUGA7P6H)
And be sure to sign up for the latest Carbon news at
diff --git a/src/pages/developing/get-started.mdx b/src/pages/developing/get-started.mdx
index 638a19f3969..7a3a3626990 100644
--- a/src/pages/developing/get-started.mdx
+++ b/src/pages/developing/get-started.mdx
@@ -97,7 +97,6 @@ question to you and will jump in to help you out.
- [#carbon-design-system](https://ibm-studios.slack.com/messages/C0M053VPT/)
- [#carbon-components](https://ibm-studios.slack.com/archives/C046Y0YUD)
-- [#carbon-elements](https://ibm-studios.slack.com/archives/CDHHNNZQR)
- [#carbon-react](https://ibm-studios.slack.com/archives/C2K6RFJ1G)
- [#carbon-ng](https://ibm-studios.slack.com/archives/CBZC0LM2N)
- [#carbon-vue](https://ibm-studios.slack.com/archives/CAM5P6NR1)
diff --git a/src/pages/developing/vue-tutorial/step-1.mdx b/src/pages/developing/vue-tutorial/step-1.mdx
index aecd512bfa2..8b5af5d0a5c 100644
--- a/src/pages/developing/vue-tutorial/step-1.mdx
+++ b/src/pages/developing/vue-tutorial/step-1.mdx
@@ -156,7 +156,7 @@ using the Vue CLI. These include:
- `@vue/cli-plugin-babel`: To ensure we produce well supported code.
- `@vue/cli-plugin-eslint`: To allow us to catch potential errors.
- `@vue/cli-plugin-unit-jest`: To allow us to unit test our code.
-- `node-sass`: To allow us to use the sass css precompiler.
+- `sass-loader`: To allow us to use the sass css precompiler.
NOTE: We could have installed these separately but using the CLI to set this up
for us ensures a good base config for these dependencies.
@@ -422,9 +422,7 @@ each individual icon we will use.
```javascript path=src/components/TutorialHeader/TutorialHeader.vue