diff --git a/packages/components/docs/sass.md b/packages/components/docs/sass.md index ca70329521aa..da134306e266 100644 --- a/packages/components/docs/sass.md +++ b/packages/components/docs/sass.md @@ -10254,12 +10254,11 @@ Include a type reset for a given body and mono font family ```scss @mixin carbon--type-reset( - $base-font-size: $carbon--base-font-size, $body-font-family: carbon--font-family('sans'), $mono-font-family: carbon--font-family('mono') ) { html { - font-size: $base-font-size; + font-size: 100%; } body { @@ -10287,7 +10286,6 @@ Include a type reset for a given body and mono font family | Name | Description | Type | Default value | | ------------------- | ----------------------------------------------------------------------------------- | -------- | ----------------------------- | -| `$base-font-size` | The base font size for your document | `Number` | `$carbon--base-font-size` | | `$body-font-family` | The font family used on the `` element | `String` | `carbon--font-family('sans')` | | `$mono-font-family` | The font family used on elements that require mono fonts, like the `` element | `String` | `carbon--font-family('mono')` | diff --git a/packages/elements/docs/sass.md b/packages/elements/docs/sass.md index 92bb107e39e0..f2f1a3cd332d 100644 --- a/packages/elements/docs/sass.md +++ b/packages/elements/docs/sass.md @@ -9548,12 +9548,11 @@ Include a type reset for a given body and mono font family ```scss @mixin carbon--type-reset( - $base-font-size: $carbon--base-font-size, $body-font-family: carbon--font-family('sans'), $mono-font-family: carbon--font-family('mono') ) { html { - font-size: $base-font-size; + font-size: 100%; } body { @@ -9581,7 +9580,6 @@ Include a type reset for a given body and mono font family | Name | Description | Type | Default value | | ------------------- | ----------------------------------------------------------------------------------- | -------- | ----------------------------- | -| `$base-font-size` | The base font size for your document | `Number` | `$carbon--base-font-size` | | `$body-font-family` | The font family used on the `` element | `String` | `carbon--font-family('sans')` | | `$mono-font-family` | The font family used on elements that require mono fonts, like the `` element | `String` | `carbon--font-family('mono')` | diff --git a/packages/type/docs/sass.md b/packages/type/docs/sass.md index 4d6674aa6f14..af082242354a 100644 --- a/packages/type/docs/sass.md +++ b/packages/type/docs/sass.md @@ -741,12 +741,11 @@ Include a type reset for a given body and mono font family ```scss @mixin carbon--type-reset( - $base-font-size: $carbon--base-font-size, $body-font-family: carbon--font-family('sans'), $mono-font-family: carbon--font-family('mono') ) { html { - font-size: $base-font-size; + font-size: 100%; } body { @@ -774,7 +773,6 @@ Include a type reset for a given body and mono font family | Name | Description | Type | Default value | | ------------------- | ----------------------------------------------------------------------------------- | -------- | ----------------------------- | -| `$base-font-size` | The base font size for your document | `Number` | `$carbon--base-font-size` | | `$body-font-family` | The font family used on the `` element | `String` | `carbon--font-family('sans')` | | `$mono-font-family` | The font family used on elements that require mono fonts, like the `` element | `String` | `carbon--font-family('mono')` |