Skip to content

Commit

Permalink
fix(breadcrumb): use flex-start for justify content (#1369)
Browse files Browse the repository at this point in the history
fixes lint warning: start value has mixed support, consider using flex-start instead

Co-authored-by: Alexander Riss <ariss@adobe.com>
  • Loading branch information
alexander-riss and Alexander Riss authored Feb 1, 2022
1 parent 8b34541 commit bd6c56c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/breadcrumb/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ governing permissions and limitations under the License.

.spectrum-Breadcrumbs {
display: flex;
justify-content: start;
justify-content: flex-start;
list-style-type: none;
flex-wrap: nowrap;
flex-grow: 1;
Expand Down Expand Up @@ -83,7 +83,7 @@ governing permissions and limitations under the License.
.spectrum-Breadcrumbs-item {
display: inline-flex;
align-items: center;
justify-content: start;
justify-content: flex-start;

box-sizing: border-box;
block-size: var(--spectrum-breadcrumb-list-height);
Expand Down Expand Up @@ -114,7 +114,7 @@ governing permissions and limitations under the License.

display: inline-flex;
align-items: center;
justify-content: start;
justify-content: flex-start;

padding-block: 0;
padding-inline: var(--spectrum-breadcrumb-item-padding-x);
Expand Down

0 comments on commit bd6c56c

Please sign in to comment.