Skip to content

Commit

Permalink
Fixed breadcrumb padding using incorrect syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrevryghem committed Aug 17, 2023
1 parent 14b1ce5 commit 6c48238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/breadcrumbs/breadcrumbs.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
.breadcrumb {
border-radius: 0;
margin-top: calc(-1 * var(--ds-content-spacing));
padding-bottom: var(--ds-content-spacing / 3);
padding-top: var(--ds-content-spacing / 3);
padding-bottom: calc(var(--ds-content-spacing) / 3);
padding-top: calc(var(--ds-content-spacing) / 3);
background-color: var(--ds-breadcrumb-bg);
}

Expand Down

0 comments on commit 6c48238

Please sign in to comment.