aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2018-04-11 17:19:25 +0300
committerXhmikosR <[email protected]>2018-04-16 09:37:58 +0300
commit555333a20e160245f795299c080b483e083cc44d (patch)
tree88d257f7136f77c91cc08678d79d320db5806029 /docs
parent5fd67a6f862cd2e34cd269853dc093017d1fd8d8 (diff)
downloadbootstrap-555333a20e160245f795299c080b483e083cc44d.tar.xz
bootstrap-555333a20e160245f795299c080b483e083cc44d.zip
breadcrumb.md: Remove trailing space.
Diffstat (limited to 'docs')
-rw-r--r--docs/4.1/components/breadcrumb.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/4.1/components/breadcrumb.md b/docs/4.1/components/breadcrumb.md
index 5324c40f8..4cc7b3de9 100644
--- a/docs/4.1/components/breadcrumb.md
+++ b/docs/4.1/components/breadcrumb.md
@@ -34,7 +34,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 seperator, you can use this:
-
+
```scss
$breadcrumb-divider: quote(">");
```