Skip to content

Commit

Permalink
Fix align-items: start to make autoprefixer happy
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed May 30, 2024
1 parent 1018359 commit bca04ee
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/styles/basic/BlockToolbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

&[data-orientation='vertical'] {
flex-direction: column;
align-items: start;
align-items: flex-start;
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/styles/basic/Form.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.react-aria-Form {
display: flex;
flex-direction: column;
align-items: start;
align-items: flex-start;
gap: 8px;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/styles/basic/Toolbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

&[data-orientation='vertical'] {
flex-direction: column;
align-items: start;
align-items: flex-start;
}
}

Expand Down

0 comments on commit bca04ee

Please sign in to comment.