]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix empty CSS variable
authorXhmikosR <xhmikosr@gmail.com>
Mon, 30 Nov 2020 05:45:57 +0000 (07:45 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Tue, 1 Dec 2020 17:17:06 +0000 (19:17 +0200)
site/content/docs/5.0/components/breadcrumb.md

index 433d5505bbd931d6d8b4190f932e44e0b3c9e9d7..893f1f00925550970bf947be7c2083d5f7b2406e 100644 (file)
@@ -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>