diff options
| author | XhmikosR <[email protected]> | 2020-11-30 07:45:57 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-12-01 19:17:06 +0200 |
| commit | 5e3219a9bbb46333416c1efa49c678d5413ab579 (patch) | |
| tree | 6b8adb051014bb672c62b52842b3819064f6d911 | |
| parent | 08eb92204e053e55eaa2bab827d8663d7535ad00 (diff) | |
| download | bootstrap-5e3219a9bbb46333416c1efa49c678d5413ab579.tar.xz bootstrap-5e3219a9bbb46333416c1efa49c678d5413ab579.zip | |
Fix empty CSS variable
| -rw-r--r-- | site/content/docs/5.0/components/breadcrumb.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.0/components/breadcrumb.md b/site/content/docs/5.0/components/breadcrumb.md index 433d5505b..893f1f009 100644 --- a/site/content/docs/5.0/components/breadcrumb.md +++ b/site/content/docs/5.0/components/breadcrumb.md @@ -67,10 +67,10 @@ It's also possible to use an **embedded SVG icon**. Apply it via our CSS custom $breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E"); ``` -You can also remove the divider setting `--bs-breadcrumb-divider: ;` (empty strings in CSS custom properties counts as a value), or setting the Sass variable to `$breadcrumb-divider: none;`. +You can also remove the divider setting `--bs-breadcrumb-divider: '';` (empty strings in CSS custom properties counts as a value), or setting the Sass variable to `$breadcrumb-divider: none;`. {{< example >}} -<nav style="--bs-breadcrumb-divider: ;" aria-label="breadcrumb"> +<nav style="--bs-breadcrumb-divider: '';" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Library</li> |
