From 3334c057c68f0ff00875f2918b123f96175491f4 Mon Sep 17 00:00:00 2001 From: Laura Griffee Date: Tue, 8 Feb 2022 16:31:17 -0700 Subject: [PATCH] Add documentation for unstyled-link() and unstyled-list() mixins --- .../guides/migrating-from-v8-to-v9.md | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/documentation/guides/migrating-from-v8-to-v9.md b/documentation/guides/migrating-from-v8-to-v9.md index 32ea7d24904..dfed3925d3a 100644 --- a/documentation/guides/migrating-from-v8-to-v9.md +++ b/documentation/guides/migrating-from-v8-to-v9.md @@ -200,6 +200,29 @@ We replaced a few of the following filter function instances with color tokens i | `shadow(layer)` | `--p-shadow-layer` | | `shadow(transparent)` | `--p-shadow-transparent` | +#### `unstyled-link()` + +Replace any instances of `@include unstyled-link` with the following code block. + +```scss +color: inherit; +text-decoration: none; + +&:visited { + color: inherit; +} +``` + +#### `unstyled-list()` + +Replace any instances of `@include unstyled-list` with the following code block. + +```scss +margin: 0; +padding: 0; +list-style: none; +``` + ## Tokens ### Duration