Skip to content

Commit

Permalink
[apigee#179] Always display field as flex when in a breadcrumb item
Browse files Browse the repository at this point in the history
  • Loading branch information
shadcn committed Jul 9, 2019
1 parent 0938c0e commit b3e42dd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11762,6 +11762,7 @@ main {
.breadcrumb-item {
padding-bottom: 0.375rem;
padding-top: 0.375rem;
display: flex;
}
.breadcrumb-item.active {
color: var(--ak-accent-color-light);
Expand All @@ -11773,6 +11774,12 @@ main {
font-size: 0.875rem;
letter-spacing: 1px;
}
.breadcrumb-item .field {
display: flex;
}
.breadcrumb-item .field .field__label {
margin-right: 1ch;
}

.btn {
font-family: "Roboto-Medium", Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
.breadcrumb-item {
padding-bottom: $breadcrumb-padding-y;
padding-top: $breadcrumb-padding-y;
display: flex;

&.active {
color: var(--ak-accent-color-light);
Expand All @@ -19,4 +20,12 @@
font-size: 0.875rem;
letter-spacing: 1px;
}

.field {
display: flex;

.field__label {
margin-right: 1ch;
}
}
}

0 comments on commit b3e42dd

Please sign in to comment.