Skip to content

Commit

Permalink
Fix beta breadcrumb
Browse files Browse the repository at this point in the history
After introducing Bootstrap 4.5.0, the breadcrumb icons weren't aligned
anymore. Because `breadcrumb-item` now are flex.
Since we modified the breadcrumb, we changed from `display: flex` to
`display: block`, in order to have the previous behaviour.
  • Loading branch information
David Kang committed May 20, 2020
1 parent 0671fd3 commit 6ac3d03
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@
.breadcrumb {
padding-bottom: 0;
@extend .mt-2;
.breadcrumb-item { line-height: 1.5rem; }
.breadcrumb-item {
display: block;
line-height: 1.5rem;
}
.breadcrumb-item::after {
display: inline-block;
padding: 0 0.5rem 0 0.25rem;
Expand Down

0 comments on commit 6ac3d03

Please sign in to comment.