From 065ea89697e298852363e5a0a0536d1de5e83d27 Mon Sep 17 00:00:00 2001 From: Justin Smestad Date: Thu, 14 Mar 2013 13:45:21 -0600 Subject: [PATCH] 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. --- scss/foundation/components/_breadcrumbs.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} -- 2.47.3