From: Justin Smestad Date: Thu, 14 Mar 2013 19:45:21 +0000 (-0600) Subject: Fix breadcrumbs first element bug X-Git-Tag: v4.0.6~4^2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1906%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix breadcrumbs first element bug See issue #1876 and #415 for more information. The first element is out of breadcrumbs is not inline with the supplemental elements in the list. --- diff --git a/scss/foundation/components/_breadcrumbs.scss b/scss/foundation/components/_breadcrumbs.scss index bd3cdb126..ec0dc21a8 100644 --- a/scss/foundation/components/_breadcrumbs.scss +++ b/scss/foundation/components/_breadcrumbs.scss @@ -97,7 +97,7 @@ $crumb-slash: "/" !default; } &:first-child a, &:first-child span { padding-#{$default-float}: 0; } - &:first-child:before { content: ""; } + &:first-child:before { content: " "; } } @@ -114,4 +114,4 @@ $crumb-slash: "/" !default; } } -} \ No newline at end of file +}