aboutsummaryrefslogtreecommitdiff
path: root/site/content/docs/4.3/components
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2019-08-14 22:40:46 +0300
committerGitHub <[email protected]>2019-08-14 22:40:46 +0300
commit4b243de2c0af9325516cd435bd7e9cd4f6da313a (patch)
treea7a85796b070bafb6642d13878aff334da092eee /site/content/docs/4.3/components
parent9a72d5c29ef3892407f5bf25d5e24241e6a7f9e5 (diff)
downloadbootstrap-4b243de2c0af9325516cd435bd7e9cd4f6da313a.tar.xz
bootstrap-4b243de2c0af9325516cd435bd7e9cd4f6da313a.zip
Fix redirects. (#29254)
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(">");