aboutsummaryrefslogtreecommitdiff
path: root/site/content/docs/4.3/components
diff options
context:
space:
mode:
Diffstat (limited to 'site/content/docs/4.3/components')
-rw-r--r--site/content/docs/4.3/components/breadcrumb.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/content/docs/4.3/components/breadcrumb.md b/site/content/docs/4.3/components/breadcrumb.md
index 493014026..61d9c2a46 100644
--- a/site/content/docs/4.3/components/breadcrumb.md
+++ b/site/content/docs/4.3/components/breadcrumb.md
@@ -32,7 +32,7 @@ group: components
## Changing the separator
-Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by changing `$breadcrumb-divider`. The [quote](https://sass-lang.com/documentation/Sass/Script/Functions.html#quote-instance_method) function is needed to generate the quotes around a string, so if you want `>` as separator, you can use this:
+Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by changing `$breadcrumb-divider`. The [quote](https://sass-lang.com/documentation/functions/string#quote) function is needed to generate the quotes around a string, so if you want `>` as separator, you can use this:
```scss
$breadcrumb-divider: quote(">");