Skip to content

Commit

Permalink
Styles: Use justify-content: flex-start instead of start
Browse files Browse the repository at this point in the history
  • Loading branch information
tyxla committed Dec 20, 2024
1 parent 12f7764 commit b6c95dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/components/src/button/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@
}

&.has-text {
justify-content: start;
justify-content: flex-start;
padding-right: $grid-unit-15;
padding-left: $grid-unit-10;
gap: $grid-unit-05;
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/tabs/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export const TabChildren = styled.span`
justify-content: center;
}
[aria-orientation='vertical'] & {
justify-content: start;
justify-content: flex-start;
}
`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@

.edit-site-global-styles-screen-revisions__meta {
display: flex;
justify-content: start;
justify-content: flex-start;
width: 100%;
align-items: flex-start;
text-align: left;
Expand Down

0 comments on commit b6c95dc

Please sign in to comment.