Skip to content

Commit

Permalink
Correct x and y for flex
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispuska committed Feb 26, 2024
1 parent 0c85ef5 commit e7a0c70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/fractures/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heliosgraphics/fractures",
"version": "6.2.0",
"version": "6.2.1",
"type": "module",
"author": "03b8 <03b8@helios.graphics>",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/fractures/src/rules/flex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export const FLEX: Array<FractureRuleType> = [
{ selector: "align-stretch", declarations: { alignItems: "stretch" } },
{ selector: "align-start", declarations: { alignItems: "start" } },
{ selector: "align-end", declarations: { alignItems: "end" } },
{ selector: "flex-x-center", declarations: { alignItems: "center" } },
{ selector: "flex-y-center", declarations: { justifyContent: "center" } },
{ selector: "flex-y-center", declarations: { alignItems: "center" } },
{ selector: "flex-x-center", declarations: { justifyContent: "center" } },
{ selector: "justify-flex-start", declarations: { justifyContent: "flex-start" } },
{ selector: "justify-flex-end", declarations: { justifyContent: "flex-end" } },

Expand Down

0 comments on commit e7a0c70

Please # to comment.