Skip to content

Commit

Permalink
fix: padding in breadcrumb (#533) (#546)
Browse files Browse the repository at this point in the history
* fix: padding in breadcrumb (#533)

* refactor: change in padding that caused warping (#533)

* feat: adding a gap in ol and li elements (#533)

---------

Co-authored-by: Alysson Keysson <[email protected]>
Co-authored-by: Iury Nogueira <[email protected]>
Co-authored-by: Danilo Alves <[email protected]>
  • Loading branch information
4 people authored Apr 28, 2023
1 parent 665aff7 commit 3dcd994
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions projects/ion/src/lib/breadcrumb/breadcrumb.component.scss
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
@import '../../styles/index.scss';

.breadcrumbs-nav {
padding: spacing(0.7) spacing(0.9);
text-decoration: none;
font-family: sans-serif;
font-size: 15px;
}

.ol-navigator {
display: inline-flex;
gap: 8px;
margin: 0;
padding: spacing(1.25);
padding: 0;
}

.ol-navigator li {
display: flex;
gap: 8px;
align-items: center;
text-align: center;

Expand All @@ -24,9 +25,10 @@
}
}
}

.ol-navigator li a {
text-decoration: none;
padding: spacing(1.25);
padding: spacing(1.25) spacing(0);
color: $neutral-6;
font-weight: 400;
font-size: 14px;
Expand Down

0 comments on commit 3dcd994

Please sign in to comment.